__construct() 공개 메소드

public __construct ( array $options = [] )
$options array
예제 #1
0
 /**
  * Basic setting
  * @param bool  $productionMode
  * @param bool  $sendEmailInDevelopment
  */
 public function __construct($productionMode, $sendEmailInDevelopment)
 {
     parent::__construct();
     $this->productionMode = $productionMode;
     $this->sendEmailInDevelopment = $sendEmailInDevelopment;
 }