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

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of the Sonata Project package.
  5.  *
  6.  * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Sonata\CoreBundle\Model\Adapter;
  12. if (!class_exists(\Sonata\Doctrine\Adapter\AdapterChain::class, false)) {
  13.     @trigger_error(
  14.         'The '.__NAMESPACE__.'\AdapterChain class is deprecated since version 3.12.0 and will be removed in 4.0.'
  15.         .' Use Sonata\Doctrine\Adapter\AdapterChain instead.',
  16.         E_USER_DEPRECATED
  17.     );
  18. }
  19. class_alias(
  20.     \Sonata\Doctrine\Adapter\AdapterChain::class,
  21.     __NAMESPACE__.'\AdapterChain'
  22. );
  23. if (false) {
  24.     /**
  25.      * @deprecated since 3.12.0, to be removed in 4.0.
  26.      */
  27.     class AdapterChain extends \Sonata\Doctrine\Adapter\AdapterChain implements AdapterInterface
  28.     {
  29.     }
  30. }