Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function testGetters() |
||
12 | { |
||
13 | $table = $this->createMock(Table::class); |
||
|
|||
14 | $localFk = $this->createMock(ForeignKeyConstraint::class); |
||
15 | $remoteFk = $this->createMock(ForeignKeyConstraint::class); |
||
16 | $ns = $this->createMock(DefaultNamingStrategy::class); |
||
17 | $descriptor = new PivotTableMethodsDescriptor($table, $fk1, $fk2, $ns, 'Bean\Namespace'); |
||
18 | |||
19 | $this->assertSame($table, $descriptor->getPivotTable()); |
||
20 | $this->assertSame($localFk, $descriptor->getLocalFk()); |
||
21 | $this->assertSame($remoteFk, $descriptor->getRemoteFk()); |
||
22 | } |
||
24 |
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