vendor/gollumsf/serializer-describe-annotation-bundle/GollumSFSerializerDescribeAnnotationBundle.php line 14

Open in your IDE?
  1. <?php
  2. namespace GollumSF\SerializerDescribeAnnotationBundle;
  3. use GollumSF\SerializerDescribeAnnotationBundle\DependencyInjection\SerializerPass;
  4. use Symfony\Component\DependencyInjection\ContainerBuilder;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle;
  6. /**
  7.  * GollumSFSerializerDescribeAnnotationBundle
  8.  *
  9.  * @author Damien Duboeuf <smeagolworms4@gmail.com>
  10.  */
  11. class GollumSFSerializerDescribeAnnotationBundle extends Bundle {
  12.     
  13.     public function build(ContainerBuilder $container) {
  14.         $container->addCompilerPass(new SerializerPass());
  15.     }
  16. }