| Total Complexity | 8 |
| Total Lines | 46 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class CommandSpec extends ObjectBehavior |
||
| 9 | { |
||
| 10 | function let() |
||
| 11 | { |
||
| 12 | $this->beConstructedWith( |
||
| 13 | '123e4567-e89b-12d3-a456-426655440000', |
||
| 14 | '123e4567-e89b-12d3-a456-426655440001', |
||
| 15 | 'test', |
||
| 16 | '1.0', |
||
| 17 | 'test_data' |
||
| 18 | ); |
||
| 19 | } |
||
| 20 | |||
| 21 | function it_is_initializable() |
||
| 22 | { |
||
| 23 | $this->shouldHaveType(Command::class); |
||
| 24 | } |
||
| 25 | |||
| 26 | function it_should_have_board_uuid() |
||
| 29 | } |
||
| 30 | |||
| 31 | function it_should_have_shard_uuid() |
||
| 32 | { |
||
| 33 | $this->getShardUuid()->shouldBeString(); |
||
| 34 | } |
||
| 35 | |||
| 36 | function it_should_have_array_value_as_key() |
||
| 39 | } |
||
| 40 | |||
| 41 | function it_should_have_source_name() |
||
| 42 | { |
||
| 43 | $this->getSourceName()->shouldBeString(); |
||
| 44 | } |
||
| 45 | |||
| 46 | function it_should_have_version_name() |
||
| 49 | } |
||
| 50 | |||
| 51 | function it_should_have_data() |
||
| 54 | } |
||
| 55 | } |
||
| 56 |
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