Completed
Push — master ( 1bc9a7...f5328c )
by Sebastian
03:12
created
src/Backup/Target.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
                 $this->pathElementsChanging[] = $d;
180 180
                 $foundChangingElement         = true;
181 181
             } else {
182
-                $this->pathNotChanging .= DIRECTORY_SEPARATOR . $d;
182
+                $this->pathNotChanging .= DIRECTORY_SEPARATOR.$d;
183 183
             }
184 184
         }
185 185
     }
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
      */
272 272
     public function getFilename(bool $plain = false) : string
273 273
     {
274
-        return $this->filename . $this->getFilenameSuffix($plain);
274
+        return $this->filename.$this->getFilenameSuffix($plain);
275 275
     }
276 276
 
277 277
     /**
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
      */
293 293
     public function getFilenameRaw($plain = false) : string
294 294
     {
295
-        return $this->filenameRaw . $this->getFilenameSuffix($plain);
295
+        return $this->filenameRaw.$this->getFilenameSuffix($plain);
296 296
     }
297 297
 
298 298
     /**
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
      */
304 304
     public function getFilenameSuffix($plain = false) : string
305 305
     {
306
-        return $this->getSuffixToAppend() . ($plain ? '' : $this->getCompressionSuffix() . $this->getCrypterSuffix());
306
+        return $this->getSuffixToAppend().($plain ? '' : $this->getCompressionSuffix().$this->getCrypterSuffix());
307 307
     }
308 308
 
309 309
     /**
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
      */
314 314
     public function getSuffixToAppend() : string
315 315
     {
316
-        return count($this->fileSuffixes) ? '.' . implode('.', $this->fileSuffixes) : '';
316
+        return count($this->fileSuffixes) ? '.'.implode('.', $this->fileSuffixes) : '';
317 317
     }
318 318
 
319 319
     /**
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
      */
324 324
     public function getCompressionSuffix() : string
325 325
     {
326
-        return $this->shouldBeCompressed() ? '.' . $this->compression->getSuffix() : '';
326
+        return $this->shouldBeCompressed() ? '.'.$this->compression->getSuffix() : '';
327 327
     }
328 328
 
329 329
     /**
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
      */
334 334
     public function getCrypterSuffix() : string
335 335
     {
336
-        return $this->shouldBeEncrypted() ? '.' . $this->crypter->getSuffix() : '';
336
+        return $this->shouldBeEncrypted() ? '.'.$this->crypter->getSuffix() : '';
337 337
     }
338 338
 
339 339
     /**
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
      */
407 407
     public function getPathname(bool $plain = false) : string
408 408
     {
409
-        return $this->path . DIRECTORY_SEPARATOR . $this->getFilename($plain);
409
+        return $this->path.DIRECTORY_SEPARATOR.$this->getFilename($plain);
410 410
     }
411 411
 
412 412
     /**
Please login to merge, or discard this patch.