Completed
Push — master ( bc803d...ad38cf )
by Sebastian
04:42
created
src/Backup/Target/Compression/Factory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,9 +55,9 @@
 block discarded – undo
55 55
     public static function getClassName($name)
56 56
     {
57 57
         if (!isset(self::$availableCompressors[$name])) {
58
-            throw new Exception('Invalid compressor: ' .$name);
58
+            throw new Exception('Invalid compressor: '.$name);
59 59
         }
60 60
         $class = self::$availableCompressors[$name];
61
-        return '\\phpbu\\App\\Backup\\Target\\Compression\\' . $class;
61
+        return '\\phpbu\\App\\Backup\\Target\\Compression\\'.$class;
62 62
     }
63 63
 }
Please login to merge, or discard this patch.