Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
19 | public function testTables() |
||
20 | { |
||
21 | $schema = $this->connection->schema(); |
||
22 | $tables = $schema->tables(); |
||
23 | |||
24 | $this->assertIsArray($tables); |
||
25 | |||
26 | $this->assertEquals(6, count($tables)); |
||
27 | |||
28 | $this->assertContains('product_reviews', $tables); |
||
29 | $this->assertContains('users', $tables); |
||
30 | $this->assertContains('products', $tables); |
||
31 | $this->assertContains('data_types_table', $tables); |
||
32 | $this->assertContains('orders', $tables); |
||
33 | $this->assertContains('order_items', $tables); |
||
34 | |||
39 |
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