Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function typesProvider(): array |
||
30 | { |
||
31 | return [ |
||
32 | ['integer UNSIGNED', Schema::TYPE_INTEGER, null, [ |
||
33 | ['unsigned'], |
||
34 | ]], |
||
35 | ['integer(10) UNSIGNED', Schema::TYPE_INTEGER, 10, [ |
||
36 | ['unsigned'], |
||
37 | ]], |
||
38 | ['integer(10) COMMENT \'test\'', Schema::TYPE_INTEGER, 10, [ |
||
39 | ['comment', 'test'], |
||
40 | ]], |
||
44 |