| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function testIssue() : void |
||
| 16 | { |
||
| 17 | self::markTestIncomplete( |
||
| 18 | '@guilhermeblanco, in #6683 we added allocationSize/initialValue as to the sequence definition but with the' |
||
| 19 | . ' changes you have made I am not sure if we should rather test this relying on the mapping drivers instead' |
||
| 20 | ); |
||
| 21 | |||
| 22 | $parsedDefinition = [ |
||
| 23 | 'sequenceName' => 'test_sequence', |
||
| 24 | 'allocationSize' => '', |
||
| 25 | 'initialValue' => '', |
||
| 26 | ]; |
||
| 27 | |||
| 28 | $classMetadataInfo = new ClassMetadataInfo('test_entity'); |
||
| 29 | $classMetadataInfo->setSequenceGeneratorDefinition($parsedDefinition); |
||
| 30 | |||
| 31 | self::assertSame( |
||
| 32 | ['sequenceName' => 'test_sequence', 'allocationSize' => '1', 'initialValue' => '1'], |
||
| 33 | $classMetadataInfo->sequenceGeneratorDefinition |
||
| 34 | ); |
||
| 37 |
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