| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 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 | // comments are ignored |
||
| 39 | ['integer(10)', Schema::TYPE_INTEGER, 10, [ |
||
| 40 | ['comment', 'test'], |
||
| 41 | ]], |
||
| 45 |