예제 #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;
 }
예제 #2
0
파일: Rollback.php 프로젝트: lebris/karma
 public function __construct(Application $app)
 {
     parent::__construct($app);
     $this->dryRun = false;
 }