vendor/uvdesk/api-bundle/UVDeskApiBundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace Webkul\UVDesk\ApiBundle;
  3. use Symfony\Component\HttpKernel\Bundle\Bundle;
  4. use Symfony\Component\DependencyInjection\ContainerBuilder;
  5. use Webkul\UVDesk\ApiBundle\DependencyInjection\ApiExtension;
  6. class UVDeskApiBundle extends Bundle
  7. {
  8.     public function getContainerExtension()
  9.     {
  10.         return new ApiExtension();
  11.     }
  12.     public function build(ContainerBuilder $container)
  13.     {
  14.         parent::build($container);
  15.     }
  16. }