1 | <?php |
||
15 | abstract class Base |
||
16 | { |
||
17 | /** |
||
18 | * @var \SebastianFeldmann\Cli\Command\Runner |
||
19 | */ |
||
20 | protected $runner; |
||
21 | |||
22 | /** |
||
23 | * @var \SebastianFeldmann\Git\Repository |
||
24 | */ |
||
25 | protected $repo; |
||
26 | |||
27 | /** |
||
28 | * Base constructor. |
||
29 | * |
||
30 | * @param \SebastianFeldmann\Cli\Process\Runner $runner |
||
31 | * @param \SebastianFeldmann\Git\Repository $repo |
||
32 | */ |
||
33 | 7 | public function __construct(Runner $runner, Repository $repo) |
|
38 | } |
||
39 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..