| @@ 83-85 (lines=3) @@ | ||
| 80 | $installStep = new $step($this->logger); |
|
| 81 | $installStep->setOverride($this->overwrite); |
|
| 82 | ||
| 83 | if (false === $installStep->handle($this->configuration, $data)) { |
|
| 84 | throw new Exception(sprintf('Aborting installation, %s step failed.', $step)); |
|
| 85 | } |
|
| 86 | } |
|
| 87 | } catch (Exception $ex) { |
|
| 88 | $this->logger->error($ex->getMessage()); |
|
| @@ 395-397 (lines=3) @@ | ||
| 392 | $installStep = new $step(Symphony::Log()->getLog()); |
|
| 393 | $installStep->setOverride(false); |
|
| 394 | ||
| 395 | if (false === $installStep->handle(Symphony::Configuration(), $data)) { |
|
| 396 | throw new Exception(sprintf('Aborting installation, %s failed', $step)); |
|
| 397 | } |
|
| 398 | } |
|
| 399 | } catch (Exception $ex) { |
|
| 400 | self::__abort($ex->getMessage(), $start); |
|