예제 #1
0
 /**
  * Boot the IoC
  */
 protected function bootIoC()
 {
     IoC::boot();
 }
예제 #2
0
파일: IoCTest.php 프로젝트: aedart/scaffold
 /**
  * @test
  *
  * @covers ::getInstance
  * @covers ::boot
  * @covers ::__construct
  * @covers ::setupContainer
  */
 public function canObtainInstance()
 {
     //$ioc = IoC::getInstance();
     $ioc = IoC::boot();
     $this->assertNotNull($ioc);
 }