vendor/sonata-project/block-bundle/src/Block/BlockAdminServiceInterface.php line 22

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\BlockBundle\Block;
  12. use Sonata\BlockBundle\Block\Service\AdminBlockServiceInterface;
  13. @trigger_error(
  14.     'The '.__NAMESPACE__.'BlockAdminServiceInterface interface is deprecated since 3.2 '.
  15.     'and will be removed with the 4.0 release. '.
  16.     'Use '.__NAMESPACE__.'\Service\AdminBlockServiceInterface instead.',
  17.     E_USER_DEPRECATED
  18. );
  19. /**
  20.  * NEXT_MAJOR: remove this interface.
  21.  *
  22.  * @deprecated since 3.2, to be removed with 4.0
  23.  */
  24. interface BlockAdminServiceInterface extends AdminBlockServiceInterface
  25. {
  26. }