__construct() 공개 메소드

public __construct ( $id = null )
예제 #1
0
 function __construct($id = null)
 {
     //TODO:
     /*
     if (!$id)
     {
         if (substr($sapi_type, 0, 3) == 'cli')
             debug_print_backtrace();
     }
     */
     parent::__construct($id);
     $this->logger = Logger::getLogger(__CLASS__);
 }
예제 #2
0
파일: Limits.php 프로젝트: mheydt/scalr
 public function __construct($id = null)
 {
     parent::__construct($id);
     $this->isBillingEnabled = \Scalr::config('scalr.billing.enabled');
 }
예제 #3
0
 function __construct($id = null)
 {
     parent::__construct($id);
     $this->logger = Logger::getLogger(__CLASS__);
 }
예제 #4
0
 function __construct($id = null)
 {
     parent::__construct($id);
     $this->logger = \Scalr::getContainer()->logger(__CLASS__);
 }
예제 #5
0
 public function __construct($id = null)
 {
     parent::__construct($id);
     $this->isBillingEnabled = false;
 }