|
@@ -33,11 +33,11 @@ discard block |
|
|
block discarded – undo |
|
33
|
33
|
|
|
34
|
34
|
protected function execute(InputInterface $input, OutputInterface $output) |
|
35
|
35
|
{ |
|
36
|
|
- if (!file_exists($this->path . '/magium.json')) { |
|
|
36
|
+ if (!file_exists($this->path.'/magium.json')) { |
|
37
|
37
|
throw new NotFoundException('Configuration file not found. Please execute magium:init.'); |
|
38
|
38
|
} |
|
39
|
39
|
$reader = new \Zend\Config\Reader\Json(); |
|
40
|
|
- $config = new Config($reader->fromFile($this->path . '/magium.json'), true); |
|
|
40
|
+ $config = new Config($reader->fromFile($this->path.'/magium.json'), true); |
|
41
|
41
|
|
|
42
|
42
|
$name = $input->getArgument('name'); |
|
43
|
43
|
$value = $input->getArgument('value'); |
|
@@ -52,7 +52,7 @@ discard block |
|
|
block discarded – undo |
|
52
|
52
|
$config->config->$name = $value; |
|
53
|
53
|
|
|
54
|
54
|
$writer = new Json(); |
|
55
|
|
- $writer->toFile($this->path . '/magium.json', $config); |
|
|
55
|
+ $writer->toFile($this->path.'/magium.json', $config); |
|
56
|
56
|
$output->writeln(sprintf('Wrote value for "%s" to %s/magium.json', $name, $this->path)); |
|
57
|
57
|
} |
|
58
|
58
|
|
Please login to merge, or discard this patch.