Completed
Pull Request — master (#103)
by
unknown
03:34
created
src/Cli/Executable/Rsync.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -244,9 +244,9 @@  discard block
 block discarded – undo
244 244
      */
245 245
     protected function createCommandLine() : CommandLine
246 246
     {
247
-        $password = !empty($this->password) ? 'RSYNC_PASSWORD=' . escapeshellarg($this->password) . ' ' : '';
247
+        $password = !empty($this->password) ? 'RSYNC_PASSWORD='.escapeshellarg($this->password).' ' : '';
248 248
         $process  = new CommandLine();
249
-        $cmd      = new Cmd($password . $this->binary);
249
+        $cmd      = new Cmd($password.$this->binary);
250 250
         $process->addCommand($cmd);
251 251
 
252 252
         if (!empty($this->args)) {
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
             $this->validateLocations();
257 257
 
258 258
             // use archive mode, verbose and compress if not already done
259
-            $options = '-av' . ($this->compressed ? 'z' : '');
259
+            $options = '-av'.($this->compressed ? 'z' : '');
260 260
             $cmd->addOption($options);
261 261
             $this->configureExcludes($cmd, $this->excludes);
262 262
             $cmd->addOptionIfNotEmpty('--delete', $this->delete, false);
Please login to merge, or discard this patch.
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.
src/Backup/Cleaner/Capacity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
         // should the currently created backup be deleted as well?
131 131
         if ($this->deleteTarget) {
132 132
             $file          = $target->toFile();
133
-            $index         = date('YmdHis', $file->getMTime()) . '-' . count($files) . '-' . $file->getPathname();
133
+            $index         = date('YmdHis', $file->getMTime()).'-'.count($files).'-'.$file->getPathname();
134 134
             $files[$index] = $file;
135 135
         }
136 136
         return $files;
Please login to merge, or discard this patch.
src/Cli/Executable/Tar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@
 block discarded – undo
238 238
         $tar->addOptionIfNotEmpty('--force-local', $this->local, false);
239 239
         $tar->addOptionIfNotEmpty('--ignore-failed-read', $this->ignoreFailedRead, false);
240 240
         $tar->addOptionIfNotEmpty('--use-compress-program', $this->compressProgram);
241
-        $tar->addOption('-' . (empty($this->compressProgram) ? $this->compression : '') . 'cf');
241
+        $tar->addOption('-'.(empty($this->compressProgram) ? $this->compression : '').'cf');
242 242
         $tar->addArgument($this->tarPathname);
243 243
         $tar->addOption('-C', dirname($this->path), ' ');
244 244
         $tar->addArgument(basename($this->path));
Please login to merge, or discard this patch.
src/Log/Webhook.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
      * Method will use the input Result to replace the placeholders in $this->jsonOutput or return an array with
111 111
      * the default values.
112 112
      *
113
-     * @param $result \phpbu\App\Result
113
+     * @param Result $result \phpbu\App\Result
114 114
      * @return array: will return array placeholders are replaced with correct data
115 115
      */
116 116
     public function getOutput($result) : array
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
      * Simple toXml function
195 195
      *
196 196
      * @author Francis Lewis: https://stackoverflow.com/a/19987539
197
-     * @param SimpleXMLElement $object
197
+     * @param \SimpleXMLElement $object
198 198
      * @param array $data
199 199
      */
200 200
     private function toXml(\SimpleXMLElement $object, array $data)
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
             // check if json_decode succeeded, otherwise return default parameters
131 131
             if ($outputArray) {
132 132
                 // only value where valuestring equals vars key is supported.
133
-                array_walk_recursive($outputArray, function (&$value, &$key) use ($vars) {
133
+                array_walk_recursive($outputArray, function(&$value, &$key) use ($vars) {
134 134
                     if (strpos($value, '__') === 0) {
135 135
                         $value = $vars[$value];
136 136
                     }
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
         $ch = curl_init();
154 154
         $uri = $this->options['uri'];
155 155
         if (strtoupper($this->options['method']) == 'GET') {
156
-            $uri .= '?' . http_build_query($output);
156
+            $uri .= '?'.http_build_query($output);
157 157
         }
158 158
         curl_setopt($ch, CURLOPT_URL, $uri);
159 159
         if (strtoupper($this->options['method']) == 'POST') {
@@ -162,8 +162,8 @@  discard block
 block discarded – undo
162 162
             curl_setopt($ch, CURLOPT_POSTFIELDS, $output);
163 163
         }
164 164
         curl_setopt($ch, CURLOPT_HTTPHEADER, [
165
-            'Content-Type: ' . $this->options['content-type'],
166
-            'Accept: ' . $this->options['content-type']
165
+            'Content-Type: '.$this->options['content-type'],
166
+            'Accept: '.$this->options['content-type']
167 167
         ]);
168 168
         curl_exec($ch);
169 169
         curl_close($ch);
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
                 $this->toXml($new_object, $value);
206 206
             } else {
207 207
                 // if the key is an integer, it needs text with it to actually work.
208
-                if ($key == (int)$key) {
208
+                if ($key == (int) $key) {
209 209
                     $key = "key_$key";
210 210
                 }
211 211
 
Please login to merge, or discard this patch.