コード例 #1
0
ファイル: Remote.php プロジェクト: JoanBotella/DialoGit
 public function __construct($name, $url)
 {
     parent::__construct($name);
     $this->url = $url;
 }
コード例 #2
0
ファイル: Tag.php プロジェクト: JoanBotella/DialoGit
 public function __construct($name, $message)
 {
     parent::__construct($name);
     $this->message = $message;
 }
コード例 #3
0
ファイル: Stash.php プロジェクト: JoanBotella/DialoGit
 public function __construct($name, $branch, $message = null)
 {
     parent::__construct($name);
     $this->branch = $branch;
     $this->message = $message;
 }