Completed
Push — master ( d9b70a...c1d6b3 )
by Viacheslav
02:54
created
src/JsonProcessor.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@  discard block
 block discarded – undo
45 45
                 if (array_key_exists($key, $vars)) {
46 46
                     $ref = $vars[$key];
47 47
                 } else {
48
-                    throw new Exception('Key not found: ' . $key);
48
+                    throw new Exception('Key not found: '.$key);
49 49
                 }
50 50
             } else {
51 51
                 if (array_key_exists($key, $ref)) {
52 52
                     $ref = $ref[$key];
53 53
                 } else {
54
-                    throw new Exception('Key not found: ' . $key);
54
+                    throw new Exception('Key not found: '.$key);
55 55
                 }
56 56
             }
57 57
         }
@@ -73,13 +73,13 @@  discard block
 block discarded – undo
73 73
                 if (property_exists($ref, $key)) {
74 74
                     $ref = &$ref->$key;
75 75
                 } else {
76
-                    throw new Exception('Key not found: ' . $key);
76
+                    throw new Exception('Key not found: '.$key);
77 77
                 }
78 78
             } else {
79 79
                 if (array_key_exists($key, $ref)) {
80 80
                     $ref = &$ref[$key];
81 81
                 } else {
82
-                    throw new Exception('Key not found: ' . $key);
82
+                    throw new Exception('Key not found: '.$key);
83 83
                 }
84 84
             }
85 85
         }
Please login to merge, or discard this patch.