예제 #1
0
파일: UploadTask.php 프로젝트: muxx/dplr
 public function __construct($localFile = null, $remoteFile = null, $serverGroup = null, $timeout = null)
 {
     if ($localFile) {
         $this->setLocalFile($localFile);
     }
     if ($remoteFile) {
         $this->setRemoteFile($remoteFile);
     }
     parent::__construct($serverGroup, $timeout);
 }
예제 #2
0
파일: CallbackTask.php 프로젝트: muxx/dplr
 public function __construct($name, callable $callback, $serverGroup = null, $timeout = null)
 {
     $this->setName($name);
     $this->setCallback($callback);
     parent::__construct($serverGroup, $timeout);
 }
예제 #3
0
파일: CommandTask.php 프로젝트: muxx/dplr
 public function __construct($command, $serverGroup = null, $timeout = null)
 {
     $this->setCommand($command);
     parent::__construct($serverGroup, $timeout);
 }