Example #1
0
 public function __construct(Application $app, $name, $description, $outputTitle)
 {
     $this->name = $name;
     $this->description = $description;
     $this->outputTitle = $outputTitle;
     parent::__construct($app);
     $this->dryRun = false;
     $this->isBackupEnabled = false;
     $this->environment = self::ENV_DEV;
     $this->systemEnvironment = null;
 }
Example #2
0
 public function __construct(Application $app)
 {
     parent::__construct($app);
     $this->dryRun = false;
 }