Пример #1
0
 /**
  * Create a new DeployCommand instance.
  *
  * @param GitWrapper $git
  * @param Filesystem $files
  * @param Dumper $yaml
  */
 public function __construct(GitWrapper $git, Filesystem $files, Dumper $yaml)
 {
     $this->git = $git;
     $this->files = $files;
     $this->yaml = $yaml;
     parent::__construct();
 }
Пример #2
0
 /**
  * Create a new BuildCommand instance.
  *
  * @param Builder $builder
  */
 public function __construct(Builder $builder)
 {
     $this->builder = $builder;
     parent::__construct();
 }
Пример #3
0
 /**
  * Create a new PullCommand instance.
  *
  * @param GitWrapper $git
  * @param Filesystem $files
  */
 public function __construct(GitWrapper $git, Filesystem $files)
 {
     $this->git = $git;
     $this->files = $files;
     parent::__construct();
 }
Пример #4
0
 /**
  * Create a new DeployCommand instance.
  *
  * @param GitWrapper $git
  * @param Builder $builder
  */
 public function __construct(GitWrapper $git, Builder $builder)
 {
     $this->git = $git;
     $this->builder = $builder;
     parent::__construct();
 }