private function configureProcessor(ConfigurableProcessor $processor)
 {
     if ($this->dryRun === true) {
         $processor->setDryRun();
     }
     if ($this->isBackupEnabled === true) {
         $processor->enableBackup();
     }
     if ($this->systemEnvironment !== null) {
         $processor->setSystemEnvironment($this->systemEnvironment);
         $this->app['logger']->info(sprintf('Hydrate <important>system</important> variables with <important>%s</important> values', $this->systemEnvironment));
     }
 }
Beispiel #2
0
 protected function launchConfigurationAction(ConfigurableProcessor $processor)
 {
     $processor->hydrate($this->environment);
     $this->warnForUnusedVariables($processor);
     $this->warnForUnvaluedVariables($processor);
 }
Beispiel #3
0
 protected function launchConfigurationAction(ConfigurableProcessor $processor)
 {
     $processor->generate($this->environment);
 }