Completed
Push — master ( 7500e8...f3e5e9 )
by Sebastian
03:26
created
src/Backup/Sync/AmazonS3.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.