コード例 #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);
 }