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

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