Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | function it_should_handle_command(Repository $repository, Board $board) |
||
28 | { |
||
29 | $board->getUuid()->willReturn(new Uuid('123e4567-e89b-12d3-a456-426655440000')); |
||
30 | $uuid = Argument::type(Uuid::class); |
||
31 | $source = Argument::type(Source::class); |
||
32 | $data = Argument::type(Data::class); |
||
33 | $board->updateShard($uuid, $source, $data)->shouldBeCalled(); |
||
34 | |||
35 | $repository->getBoardByUuid($uuid)->willReturn($board); |
||
36 | |||
37 | $command = new Command( |
||
38 | '123e4567-e89b-12d3-a456-426655440000', |
||
39 | '123e4567-e89b-12d3-a456-426655440001', |
||
40 | 'test', |
||
41 | '1.0', |
||
42 | 'test_data' |
||
43 | ); |
||
44 | $this->handle($command)->shouldBeNull(); |
||
45 | } |
||
47 |
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