vendor/sonata-project/cache-bundle/src/Invalidation/SimpleCacheInvalidation.php line 17

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\CacheBundle\Invalidation;
  11. @trigger_error(
  12.     'The '.__NAMESPACE__.'\SimpleCacheInvalidation class is deprecated since version 2.4 and will be removed in 3.0.'
  13.     .' Use Sonata\Cache\Invalidation\SimpleCacheInvalidation instead.',
  14.     E_USER_DEPRECATED
  15. );
  16. /**
  17.  * NEXT_MAJOR: remove this class.
  18.  *
  19.  * @deprecated since version 2.4, to be removed in 3.0. Use Sonata\Cache\Invalidation\SimpleCacheInvalidation instead.
  20.  */
  21. class SimpleCacheInvalidation extends \Sonata\Cache\Invalidation\SimpleCacheInvalidation
  22. {
  23. }