Total Complexity | 6 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class VoidOutcomeSpec extends ObjectBehavior |
||
13 | { |
||
14 | function it_is_initializable() |
||
15 | { |
||
16 | $this->shouldHaveType(VoidOutcome::CLASS); |
||
17 | } |
||
18 | |||
19 | function it_is_an_outcome() |
||
22 | } |
||
23 | |||
24 | function it_is_a_void_type() |
||
25 | { |
||
26 | $this->getType()->shouldReturn(OutcomeInterface::TYPE_VOID); |
||
27 | } |
||
28 | |||
29 | function it_must_not_be_handled() |
||
30 | { |
||
31 | $this->mustBeHandled()->shouldReturn(false); |
||
32 | } |
||
33 | |||
34 | function it_contains_content() |
||
35 | { |
||
36 | $this->getContent()->shouldReturn(''); |
||
37 | } |
||
38 | |||
39 | function it_contains_description() |
||
42 | } |
||
43 | } |
||
44 |
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