Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class NotExistsInTable extends AbstractRule |
||
24 | { |
||
25 | /** |
||
26 | * @var |
||
27 | */ |
||
28 | private $columns; |
||
29 | /** |
||
30 | * @var |
||
31 | */ |
||
32 | private $table; |
||
33 | |||
34 | /** |
||
35 | * NotExistsInTable constructor. |
||
36 | * @param $table |
||
37 | * @param $columns |
||
38 | */ |
||
39 | public function __construct($table, $columns) |
||
40 | { |
||
41 | $this->table = $table; |
||
42 | $this->columns = $columns; |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * @param $input |
||
47 | * @return mixed |
||
48 | */ |
||
49 | public function validate($input) |
||
52 | } |
||
53 | } |
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