vendor/symfony/ux-lazy-image/src/LazyImageBundle.php line 16

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  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 Symfony\UX\LazyImage;
  11. use Symfony\Component\HttpKernel\Bundle\Bundle;
  12. trigger_deprecation('symfony/ux-lazy-image''2.27.0''The package is deprecated and will be removed in 3.0.');
  13. /**
  14.  * @author Titouan Galopin <galopintitouan@gmail.com>
  15.  *
  16.  * @final
  17.  */
  18. class LazyImageBundle extends Bundle
  19. {
  20.     public function getPath(): string
  21.     {
  22.         return \dirname(__DIR__);
  23.     }
  24. }