vendor/sonata-project/core-bundle/src/Model/Adapter/AdapterChain.php line 23

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\Adapter;
  11. @trigger_error(
  12.     'The '.__NAMESPACE__.'\AdapterInterface class is deprecated since version 3.x and will be removed in 4.0.'
  13.     .' Use Sonata\Doctrine\Adapter\AdapterChain instead.',
  14.     E_USER_DEPRECATED
  15. );
  16. /**
  17.  * @deprecated since 3.x, to be removed in 4.0.
  18.  */
  19. class AdapterChain extends \Sonata\Doctrine\Adapter\AdapterChain implements AdapterInterface
  20. {
  21. }