vendor/rawafed/cloud-services-bundle/CloudServicesBundle.php line 10

Open in your IDE?
  1. <?php
  2. namespace Rawafed\CloudServicesBundle;
  3. use Doctrine\DBAL\Types\Type;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. use Symfony\Component\DependencyInjection\ContainerBuilder;
  6. use Rawafed\CloudServicesBundle\DependencyInjection\Compiler\CloudServicesCompilerPass;
  7. class CloudServicesBundle extends Bundle
  8. {
  9.     public function build(ContainerBuilder $container)
  10.     {
  11.         parent::build($container);
  12.         $container->addCompilerPass(new CloudServicesCompilerPass());
  13.     }
  14.     /*public function boot()
  15.     {
  16.         $encryptedString = Type::getType('encrypted_string');
  17.         $encryptedString->setKey($this->container->getParameter('cloud_services.subscriptions')['dbpass_key']);
  18.     }*/
  19. }