| Total Complexity | 6 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class SourceSpec extends ObjectBehavior |
||
| 11 | { |
||
| 12 | function let(Name $name, Version $version) |
||
| 13 | { |
||
| 14 | $this->beConstructedWith($name, $version); |
||
| 15 | } |
||
| 16 | |||
| 17 | function it_is_initializable() |
||
| 18 | { |
||
| 19 | $this->shouldHaveType(Source::class); |
||
| 20 | } |
||
| 21 | |||
| 22 | function it_should_have_name() |
||
| 25 | } |
||
| 26 | |||
| 27 | function it_should_have_version() |
||
| 28 | { |
||
| 29 | $this->getVersion()->shouldBeAnInstanceOf(Version::class); |
||
| 30 | } |
||
| 31 | |||
| 32 | function is_should_check_equal_instances(Source $source) |
||
| 35 | } |
||
| 36 | |||
| 37 | function it_should_convert_to_string() |
||
| 43 | } |
||
| 44 | } |
||
| 45 |
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