Completed
Push — master ( e73bbc...d6ad0c )
by Sebastian
03:01
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.
src/Factory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -286,7 +286,7 @@
 block discarded – undo
286 286
     {
287 287
         if (!isset(self::$classMap[$type])) {
288 288
             throw new Exception(
289
-                'invalid type, please use only \'' . implode('\', \'', array_keys(self::$classMap)) . '\''
289
+                'invalid type, please use only \''.implode('\', \'', array_keys(self::$classMap)).'\''
290 290
             );
291 291
         }
292 292
     }
Please login to merge, or discard this patch.
src/Configuration/Loader/File.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
     protected function getAdapter($name)
78 78
     {
79 79
         if (!isset($this->adapters[$name])) {
80
-            throw new Exception('no adapter registered with name: ' . $name);
80
+            throw new Exception('no adapter registered with name: '.$name);
81 81
         }
82 82
         return $this->adapters[$name];
83 83
     }
Please login to merge, or discard this patch.