コード例 #1
0
ファイル: JobComponent.php プロジェクト: herroffizier/yiiq
 public function __construct(Yiiq $owner, $id)
 {
     if (!$id) {
         throw new \CException('Job id cannot be empty.');
     }
     parent::__construct($owner);
     $this->id = $id;
 }
コード例 #2
0
ファイル: PoolGroup.php プロジェクト: herroffizier/yiiq
 public function __construct(Yiiq $owner, $type, $class)
 {
     parent::__construct($owner);
     $this->type = $type;
     $this->class = $class;
 }
コード例 #3
0
ファイル: Runner.php プロジェクト: herroffizier/yiiq
 public function __construct(Yiiq $owner, Job $job)
 {
     parent::__construct($owner);
     $this->job = $job;
 }