src/mywebsolutions/intl-bundle/MWSIntlBundle.php line 15

Open in your IDE?
  1. <?php
  2. /**
  3.  * Class MWSIntlBundle
  4.  * @package MWS\IntlBundle
  5.  * @author Martin Walther <martin@myweb.solutions>
  6.  *
  7.  * (c) MyWebSolutions
  8.  */
  9. namespace MWS\IntlBundle;
  10. use Symfony\Component\DependencyInjection\ContainerBuilder;
  11. use Symfony\Component\HttpKernel\Bundle\Bundle;
  12. class MWSIntlBundle extends Bundle
  13. {
  14.     /**
  15.      * @param ContainerBuilder $container
  16.      */
  17.     public function build(ContainerBuilder $container)
  18.     {
  19.         parent::build($container);
  20.     }
  21. }