vendor/handcraftedinthealps/rest-routing-bundle/RestRoutingBundle.php line 21
<?php/** This file is part of Handcrafted in the Alps - Rest Routing Bundle Project.** (c) 2011-2020 FriendsOfSymfony <http://friendsofsymfony.github.com/>* (c) 2020 Sulu GmbH <hello@sulu.io>** For the full copyright and license information, please view the LICENSE* file that was distributed with this source code.*/namespace HandcraftedInTheAlps\RestRoutingBundle;use HandcraftedInTheAlps\RestRoutingBundle\DependencyInjection\CompilerPass\FormatsCompilerPass;use HandcraftedInTheAlps\RestRoutingBundle\DependencyInjection\RestRoutingExtension;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;use Symfony\Component\HttpKernel\Bundle\Bundle;class RestRoutingBundle extends Bundle{/*** {@inheritdoc}*/public function build(ContainerBuilder $container){$container->addCompilerPass(new FormatsCompilerPass());}public function getContainerExtension(): ?ExtensionInterface{if (null === $this->extension) {$this->extension = new RestRoutingExtension();}return $this->extension;}}