vendor/sonata-project/intl-bundle/src/SonataIntlBundle.php line 20

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of the Sonata Project package.
  5.  *
  6.  * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Sonata\IntlBundle;
  12. use Sonata\IntlBundle\DependencyInjection\Compiler\StrictPass;
  13. use Symfony\Component\DependencyInjection\ContainerBuilder;
  14. use Symfony\Component\HttpKernel\Bundle\Bundle;
  15. class SonataIntlBundle extends Bundle
  16. {
  17.     /**
  18.      * Returns a cleaned version number.
  19.      *
  20.      * @static
  21.      *
  22.      * @param $version
  23.      *
  24.      * @return string
  25.      */
  26.     public static function getSymfonyVersion($version)
  27.     {
  28.         return implode('.', \array_slice(array_map(static function ($val) {
  29.             return (int) $val;
  30.         }, explode('.'$version)), 03));
  31.     }
  32.     /**
  33.      * {@inheritdoc}
  34.      */
  35.     public function build(ContainerBuilder $container)
  36.     {
  37.         $container->addCompilerPass(new StrictPass());
  38.     }
  39. }