vendor/liip/imagine-bundle/Templating/Helper/FilterHelper.php line 14

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the `liip/LiipImagineBundle` project.
  4.  *
  5.  * (c) https://github.com/liip/LiipImagineBundle/graphs/contributors
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE.md
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Liip\ImagineBundle\Templating\Helper;
  11. @trigger_error('The '.FilterHelper::class.' class is deprecated since version 2.2 and will be removed in 3.0; use Twig instead.'E_USER_DEPRECATED);
  12. use Liip\ImagineBundle\Templating\FilterTrait;
  13. use Symfony\Component\Templating\Helper\Helper;
  14. /**
  15.  * @deprecated deprecated since version 2.2 and will be removed in 3.0
  16.  */
  17. class FilterHelper extends Helper
  18. {
  19.     use FilterTrait;
  20. }