1 | <?php |
||
18 | class DoctrineMigration extends AbstractCheck |
||
19 | { |
||
20 | /** |
||
21 | * Migration file |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | private $file; |
||
26 | |||
27 | /** |
||
28 | * DB connection for migrations |
||
29 | * |
||
30 | * @var Connection |
||
31 | */ |
||
32 | private $connectionName; |
||
33 | |||
34 | /** |
||
35 | * Original checker |
||
36 | * |
||
37 | * @var CheckInterface |
||
38 | */ |
||
39 | private $checker; |
||
40 | |||
41 | /** |
||
42 | * ConnectionRegistry |
||
43 | * |
||
44 | * @var ConnectionRegistry |
||
45 | */ |
||
46 | private $connectionRegistry; |
||
47 | |||
48 | /** |
||
49 | * DI container |
||
50 | * |
||
51 | * @var ContainerInterface |
||
52 | */ |
||
53 | private $container; |
||
54 | |||
55 | /** |
||
56 | * DoctrineMigration constructor. |
||
57 | * |
||
58 | * @param ContainerInterface $container Symfony DI container |
||
59 | * @param ConnectionRegistry $connectionRegistry Doctrine connection registry |
||
60 | * @param $connectionName Connection name from doctrine config |
||
61 | * @param string $file Absolute path to migration file |
||
62 | */ |
||
63 | public function __construct( |
||
74 | |||
75 | /** |
||
76 | * @inheritDoc |
||
77 | */ |
||
78 | public function check() |
||
88 | |||
89 | /** |
||
90 | * Return Zend diagnostics object |
||
91 | * |
||
92 | * @return CheckInterface |
||
93 | */ |
||
94 | private function getDiagnostics() |
||
131 | } |
||
132 |
Scrutinizer analyzes your
composer.json
/composer.lock
file if available to determine the classes, and functions that are defined by your dependencies.It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.