Total Complexity | 5 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class ShardSpec extends ObjectBehavior |
||
12 | { |
||
13 | function let(Uuid $uuid, Key $key, Source $source) |
||
14 | { |
||
15 | $key->getValue()->willReturn(['init']); |
||
16 | $source->__toString()->willReturn('test:1.0'); |
||
17 | $this->beConstructedWith($uuid, $source, $key); |
||
18 | } |
||
19 | |||
20 | function it_is_initializable() |
||
23 | } |
||
24 | |||
25 | function it_should_have_uuid() |
||
26 | { |
||
27 | $this->getUuid()->shouldBeAnInstanceOf(Uuid::class); |
||
28 | } |
||
29 | |||
30 | function it_should_have_key() |
||
31 | { |
||
32 | $this->getKey()->shouldBeAnInstanceOf(Key::class); |
||
33 | } |
||
34 | |||
35 | function it_should_have_acceptable_source() |
||
38 | } |
||
39 | } |
||
40 |
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