1 | <?php namespace Comodojo\Foundation\Console; |
||
25 | abstract class AbstractCommand extends Command { |
||
26 | |||
27 | use ConfigurationTrait; |
||
28 | use LoggerTrait; |
||
29 | |||
30 | /** |
||
31 | * @var DateTime |
||
32 | */ |
||
33 | protected $start_time; |
||
34 | |||
35 | public function setStartTime() { |
||
38 | |||
39 | public function getEndTime() { |
||
43 | |||
44 | static public function init(Configuration $configuration) { |
||
52 | |||
53 | } |
||
54 |
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..