1 | <?php |
||
15 | class PhpUnitHandler extends ToolHandler |
||
16 | { |
||
17 | /** @var PhpUnitProcessBuilder */ |
||
18 | protected $phpUnitProcessBuilder; |
||
19 | |||
20 | /** |
||
21 | * @param OutputHandlerInterface $outputHandler |
||
22 | * @param ProcessBuilderInterface $processBuilderInterface |
||
23 | */ |
||
24 | 3 | public function __construct(OutputHandlerInterface $outputHandler, ProcessBuilderInterface $processBuilderInterface) |
|
30 | |||
31 | /** |
||
32 | * @param array $messages |
||
33 | * |
||
34 | * @throws UnitTestsException |
||
35 | */ |
||
36 | 2 | public function run(array $messages) |
|
51 | |||
52 | /** |
||
53 | * @return \Symfony\Component\Process\ProcessBuilder |
||
54 | */ |
||
55 | 2 | protected function processBuilder() |
|
56 | { |
||
57 | 2 | return $this->phpUnitProcessBuilder->getProcessBuilder($this->getBinPath('phpunit')); |
|
58 | } |
||
59 | |||
60 | 2 | private function setTitle() |
|
66 | } |
||
67 |
Our type inference engine has found a suspicous assignment of a value to a property. This check raises an issue when a value that can be of a given class or a super-class is assigned to a property that is type hinted more strictly.
Either this assignment is in error or an instanceof check should be added for that assignment.