Esempio n. 1
0
 /**
  * Constructing Method
  * Setups class properties
  * @param array $verbs
  * @return void
  */
 public function __construct($verbs = array())
 {
     $this->setMaster($this);
     $this->verbs = $verbs;
     parent::__construct();
 }
Esempio n. 2
0
 public function __construct($master, $path)
 {
     $this->master = $master;
     $this->path = $path;
     parent::__construct();
 }