Total Complexity | 4 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 8 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Yentu |
||
12 | { |
||
13 | private static DatabaseItemFactory $factory; |
||
14 | private static Schema $defaultSchema; |
||
15 | |||
16 | public static function setup(DatabaseItemFactory $factory, string $defaultSchema): void |
||
17 | { |
||
18 | self::$defaultSchema = $factory->getDefaultSchema($defaultSchema); |
||
19 | self::$factory = $factory; |
||
20 | } |
||
21 | |||
22 | public static function begin(): Begin |
||
28 | } |
||
29 | |||
30 | public static function refschema($name) { |
||
35 | } |
||
36 | |||
37 | public static function reftable($name) { |
||
45 |