Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 8 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class Yentu |
||
9 | { |
||
10 | private static DatabaseItemFactory $factory; |
||
11 | private static Schema $defaultSchema; |
||
12 | |||
13 | public static function setup(DatabaseItemFactory $factory, string $defaultSchema) |
||
14 | { |
||
15 | self::$defaultSchema = $factory->create(ItemType::Schema, $defaultSchema); |
||
16 | self::$factory = $factory; |
||
17 | } |
||
18 | |||
19 | public static function begin() { |
||
21 | } |
||
22 | |||
23 | public static function refschema($name) { |
||
27 | } |
||
28 | |||
29 | public static function reftable($name) { |
||
36 |