| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 4 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class AdapterTest extends PHPUnit_Framework_TestCase |
||
| 16 | { |
||
| 17 | private Adapter $adapter; |
||
| 18 | private RegistryInterface $registry; |
||
| 19 | |||
| 20 | protected function setUp(): void |
||
| 24 | } |
||
| 25 | |||
| 26 | public function testSecond() |
||
| 27 | { |
||
| 28 | $this->registry->setFirst('First'); |
||
| 29 | $this->assertEquals('First', $this->registry->getFirst()); |
||
| 30 | $this->registry->setSecond('3.14'); |
||
| 31 | $this->assertEquals('3.14', $this->registry->getSecond()); |
||
| 32 | } |
||
| 33 | |||
| 34 | public function testAdapt() |
||
| 40 | } |
||
| 41 | } |
||
| 42 |
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