/**
  * @param SlackStatusService $slack
  */
 public function __construct(SlackStatusService $slack)
 {
     parent::__construct();
     $this->slack = $slack;
 }
 /**
  * Create a new command instance.
  *
  * @param Client $client
  * @param Filesystem $filesystem
  */
 public function __construct(Client $client, Filesystem $filesystem)
 {
     parent::__construct();
     $this->client = $client;
     $this->filesystem = $filesystem;
 }
Example #3
0
 /**
  * Create a new command instance.
  *
  * @param Filesystem $filesystem
  */
 public function __construct(Filesystem $filesystem)
 {
     parent::__construct();
     $this->filesystem = $filesystem;
 }
Example #4
0
 /**
  * Create a new command instance.
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
 }