vendor/nzo/url-encryptor-bundle/NzoUrlEncryptorBundle.php line 18

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the NzoUrlEncryptorBundle package.
  4.  *
  5.  * (c) Ala Eddine Khefifi <alakhefifi@gmail.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 Nzo\UrlEncryptorBundle;
  11. use Nzo\UrlEncryptorBundle\DependencyInjection\NzoEncryptorExtension;
  12. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  13. use Symfony\Component\HttpKernel\Bundle\Bundle;
  14. class NzoUrlEncryptorBundle extends Bundle
  15. {
  16.     public function getContainerExtension(): ?ExtensionInterface
  17.     {
  18.         return new NzoEncryptorExtension();
  19.     }
  20. }