@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | { |
127 | 127 | foreach (['key', 'secret', 'bucket', 'region', 'path'] as $option) { |
128 | 128 | if (!Arr::isSetAndNotEmptyString($config, $option)) { |
129 | - throw new Exception('AWS S3 ' . $option . ' is mandatory'); |
|
129 | + throw new Exception('AWS S3 '.$option.' is mandatory'); |
|
130 | 130 | } |
131 | 131 | } |
132 | 132 | } |
@@ -150,11 +150,11 @@ discard block |
||
150 | 150 | public function simulate(Target $target, Result $result) |
151 | 151 | { |
152 | 152 | $result->debug( |
153 | - 'sync backup to Amazon S3' . PHP_EOL |
|
154 | - . ' region: ' . $this->region . PHP_EOL |
|
155 | - . ' key: ' . $this->key . PHP_EOL |
|
156 | - . ' secret: ********' . PHP_EOL |
|
157 | - . ' location: ' . $this->bucket |
|
153 | + 'sync backup to Amazon S3'.PHP_EOL |
|
154 | + . ' region: '.$this->region.PHP_EOL |
|
155 | + . ' key: '.$this->key.PHP_EOL |
|
156 | + . ' secret: ********'.PHP_EOL |
|
157 | + . ' location: '.$this->bucket |
|
158 | 158 | ); |
159 | 159 | } |
160 | 160 |