src/CustomBundle/CustomBundle.php line 8

Open in your IDE?
  1. <?php
  2. namespace CustomBundle;
  3. use Codeages\PluginBundle\System\PluginBase;
  4. use CustomBundle\Biz\CustomServiceProvider;
  5. class CustomBundle extends PluginBase
  6. {
  7.     public function getParent()
  8.     {
  9.         return 'CorporateTrainingBundle';
  10.     }
  11.     public function boot()
  12.     {
  13.         parent::boot();
  14.         $biz $this->container->get('biz');
  15.         $biz->register(new CustomServiceProvider());
  16.     }
  17.     public function getEnabledExtensions()
  18.     {
  19.         return array('DataTag''StatusTemplate''DataDict''NotificationTemplate');
  20.     }
  21. }