move from old repository

This commit is contained in:
Jan-Niclas Loosen
2025-02-12 15:03:39 +01:00
parent b684096b4a
commit 29703314a3
19 changed files with 1097 additions and 0 deletions

15
enums/Engine.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
namespace DatabaseHelper\enums;
enum Engine
{
case INNODB;
case MYISAM;
public function toString(): string {
return match ($this) {
self::INNODB => 'InnoDB',
self::MYISAM => 'MyISAM',
};
}
}