예제 #1
0
파일: Event.php 프로젝트: brussens/cogear2
 /**
  * Конструктор
  */
 public function __construct($name)
 {
     $this->name = $name;
     parent::__construct();
     $this->results = new Core_ArrayObject();
 }
예제 #2
0
파일: cURL.php 프로젝트: brussens/cogear2
 /**
  * Конструктор
  */
 public function __construct($options = array())
 {
     parent::__construct();
     $this->init($options);
 }