lib/EigyoBundle/src/TimesEigyoBundle.php line 7

Open in your IDE?
  1. <?php
  2. namespace Times\EigyoBundle;
  3. use Symfony\Component\HttpKernel\Bundle\Bundle;
  4. class TimesEigyoBundle extends Bundle
  5. /**
  6.      * {@inheritdoc}
  7.      */
  8.     public function boot()
  9.     {
  10.         // 14/12/14 sakamoto JinjiKoukaBundleを参考に実装
  11.         parent::boot();
  12.         // 静的クラスにコンテナ(sf1.4のsf_contextのようなもの)を保持しどこからでも参照可能にする。
  13.         Common\TimesStatic::$container $this->container;
  14.     }
  15.     /*
  16.     public function getParent()
  17.     {
  18.     } */
  19. }