vendor/cocur/slugify/src/Bridge/Symfony/CocurSlugifyBundle.php line 26

Open in your IDE?
  1. <?php
  2. /**
  3.  * This file is part of cocur/slugify.
  4.  *
  5.  * (c) Florian Eckerstorfer <florian@eckerstorfer.co>
  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 Cocur\Slugify\Bridge\Symfony;
  11. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  12. use Symfony\Component\HttpKernel\Bundle\Bundle;
  13. /**
  14.  * CocurSlugifyBundle
  15.  *
  16.  * @package    cocur/slugify
  17.  * @subpackage bridge
  18.  * @author     Florian Eckerstorfer <florian@eckerstorfer.co>
  19.  * @copyright  2012-2014 Florian Eckerstorfer
  20.  * @license    http://www.opensource.org/licenses/MIT The MIT License
  21.  */
  22. class CocurSlugifyBundle extends Bundle
  23. {
  24.     public function getContainerExtension(): ExtensionInterface
  25.     {
  26.         return new CocurSlugifyExtension();
  27.     }
  28. }