Я хочу настроить Doctrine 2.2 с zf 1.11. Все сделано, но я не знаю, о чем эта ошибка:
Строгие стандарты: объявление Sc \ Resource \ EntityManagerFront :: postDispatch () должно быть совместимо с Zend_Controller_Plugin_Abstract :: postDispatch () в D: \ xampp \ htdocs \ sc \ library \ Sc \ Resource \ EntityManagerFront.php для строка 26
Мой код:
<?php
namespace Sc\Resource;
use Zend_Controller_Plugin_Abstract, Zend_Controller_Front;
class EntityManagerFront extends Zend_Controller_Plugin_Abstract
{
/**
* Flush the EntityManager.
*
* (non-PHPdoc)
* @see Zend_Controller_Plugin_Abstract::dispatchLoopShutdown()
*/
public function postDispatch($request)
{
$bootstrap = Zend_Controller_Front::getInstance()->getParam('bootstrap');
$em = $bootstrap->getResource('EntityManager');
$em->flush();
return $em;
}
}