vendor/sonata-project/core-bundle/src/Model/BaseEntityManager.php line 17

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Sonata Project package.
  4.  *
  5.  * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Sonata\CoreBundle\Model;
  11. @trigger_error(
  12.     'The '.__NAMESPACE__.'\BaseEntityManager class is deprecated since version 3.x and will be removed in 4.0.'
  13.     .' Use Sonata\Doctrine\Entity\BaseEntityManager instead.',
  14.     E_USER_DEPRECATED
  15. );
  16. /**
  17.  * @author Sylvain Deloux <sylvain.deloux@ekino.com>
  18.  *
  19.  * @deprecated since 3.x, to be removed in 4.0.
  20.  */
  21. abstract class BaseEntityManager extends \Sonata\Doctrine\Entity\BaseEntityManager implements ManagerInterface
  22. {
  23. }