| 1 | <?php |
||
| 10 | class ConsoleController extends AbstractActionController |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * |
||
| 14 | * @var ServiceManager |
||
| 15 | */ |
||
| 16 | protected $serviceLocator; |
||
| 17 | |||
| 18 | public function __construct(ServiceLocatorInterface $locator) |
||
| 22 | |||
| 23 | public function getServiceLocator() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var cronService |
||
| 31 | */ |
||
| 32 | protected $cronService; |
||
| 33 | |||
| 34 | public function cronAction() |
||
| 55 | |||
| 56 | public function getCronService() |
||
| 64 | |||
| 65 | public function setCronService(Cron $cronService) |
||
| 71 | } |
||
| 72 |
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..