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

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\HttpKernel\Bundle\Bundle;
  12. /**
  13.  * CourSlugifyBundle
  14.  *
  15.  * @package    cocur/slugify
  16.  * @subpackage bridge
  17.  * @author     Florian Eckerstorfer <florian@eckerstorfer.co>
  18.  * @copyright  2012-2014 Florian Eckerstorfer
  19.  * @license    http://www.opensource.org/licenses/MIT The MIT License
  20.  */
  21. class CocurSlugifyBundle extends Bundle
  22. {
  23.     public function getContainerExtension()
  24.     {
  25.         return new CocurSlugifyExtension();
  26.     }
  27. }