Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function testDanglingPointers() |
||
24 | { |
||
25 | if (!\class_exists(\WeakRef::class)) { |
||
26 | $this->markTestSkipped('No weakref extension detected'); |
||
27 | return; |
||
28 | } |
||
29 | $objectStorage = new WeakrefObjectStorage(); |
||
30 | $dbRow = $this->createMock(DbRow::class); |
||
31 | |||
32 | for ($i=0; $i<10001; $i++) { |
||
33 | $objectStorage->set('foo', $i, clone $dbRow); |
||
34 | } |
||
35 | $this->assertNull($objectStorage->get('foo', 42)); |
||
36 | } |
||
38 |
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