Total Complexity | 6 |
Total Lines | 54 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class AbstractModel |
||
9 | { |
||
10 | /** |
||
11 | * @var LoggerInterface |
||
12 | */ |
||
13 | protected $logger; |
||
14 | |||
15 | /** |
||
16 | * @var Filesystem |
||
17 | */ |
||
18 | protected $_filesystem; |
||
19 | |||
20 | /** |
||
21 | * @var OutputInterface |
||
22 | */ |
||
23 | protected $_output; |
||
24 | |||
25 | /** |
||
26 | * AbstractModel constructor. |
||
27 | * |
||
28 | * @param LoggerInterface $logger |
||
29 | * @param Filesystem $filesystem |
||
30 | */ |
||
31 | public function __construct( |
||
32 | LoggerInterface $logger |
||
33 | ) { |
||
34 | $this->logger = $logger; |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @param OutputInterface $output |
||
39 | */ |
||
40 | public function setOutput(OutputInterface $output) |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * @param $text |
||
47 | */ |
||
48 | protected function write($text) |
||
52 | } |
||
53 | } |
||
54 | |||
55 | /** |
||
56 | * @param $text |
||
57 | */ |
||
58 | protected function writeln($text) |
||
62 | } |
||
63 | } |
||
65 |
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