| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function types(): array |
||
| 13 | { |
||
| 14 | return [ |
||
| 15 | ['integer NULL DEFAULT NULL', Schema::TYPE_INTEGER, null, [ |
||
| 16 | ['unsigned'], ['null'], |
||
| 17 | ]], |
||
| 18 | ['integer(10)', Schema::TYPE_INTEGER, 10, [ |
||
| 19 | ['unsigned'], |
||
| 20 | ]], |
||
| 21 | ['timestamp() WITH TIME ZONE NOT NULL', 'timestamp() WITH TIME ZONE', null, [ |
||
| 22 | ['notNull'], |
||
| 23 | ]], |
||
| 24 | ['timestamp() WITH TIME ZONE DEFAULT NOW()', 'timestamp() WITH TIME ZONE', null, [ |
||
| 25 | ['defaultValue', new Expression('NOW()')], |
||
| 26 | ]], |
||
| 27 | ['integer(10)', Schema::TYPE_INTEGER, 10, [ |
||
| 28 | ['comment', 'test'], |
||
| 29 | ]], |
||
| 33 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths