vendor/sonata-project/block-bundle/src/Block/BaseBlockService.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\AbstractAdminBlockService;
  12. @trigger_error(
  13.     'The '.__NAMESPACE__.'\BaseBlockService class is deprecated since 3.2 '.
  14.     'and will be removed with the 4.0 release.'.
  15.     'Use '.__NAMESPACE__.'\Service\AbstractBlockService instead.',
  16.     E_USER_DEPRECATED
  17. );
  18. /**
  19.  * BaseBlockService.
  20.  *
  21.  * NEXT_MAJOR: remove this class.
  22.  *
  23.  * @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
  24.  *
  25.  * @deprecated since 3.2, to be removed with 4.0
  26.  */
  27. abstract class BaseBlockService extends AbstractAdminBlockService implements BlockAdminServiceInterface
  28. {
  29. }