| @@ 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()); |
|
| @@ 388-390 (lines=3) @@ | ||
| 385 | $installStep = new $step(Symphony::Log()->getLog()); |
|
| 386 | $installStep->setOverride(false); |
|
| 387 | ||
| 388 | if (false === $installStep->handle(Symphony::Configuration(), $data)) { |
|
| 389 | throw new Exception(sprintf('Aborting installation, %s failed', $step)); |
|
| 390 | } |
|
| 391 | } |
|
| 392 | } catch (Exception $ex) { |
|
| 393 | self::__abort($ex->getMessage(), $start); |
|