Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class CodeBlockSpec extends ObjectBehavior |
||
12 | { |
||
13 | function let() |
||
14 | { |
||
15 | $this->beConstructedWith('foo'); |
||
16 | } |
||
17 | |||
18 | function it_is_initializable() |
||
19 | { |
||
20 | $this->shouldHaveType(CodeBlock::CLASS); |
||
21 | } |
||
22 | |||
23 | function it_contains_code() |
||
24 | { |
||
25 | $this->getCode()->shouldReturn('foo'); |
||
26 | } |
||
27 | |||
28 | function it_can_prepend_code() |
||
31 | } |
||
32 | } |
||
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