| 1 | <?php |
||
| 15 | abstract class ImportCommandBase extends Command { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var ServiceFactory|null |
||
| 19 | */ |
||
| 20 | protected $factory = null; |
||
| 21 | |||
| 22 | public function setServiceFactory( ServiceFactory $factory ) { |
||
| 25 | |||
| 26 | final protected function execute( InputInterface $input, OutputInterface $output ) { |
||
| 40 | |||
| 41 | abstract protected function executeCommand( InputInterface $input, OutputInterface $output ); |
||
| 42 | |||
| 43 | } |
||
| 44 |
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..