Passed
Push — master ( 85d086...14655d )
by Tim
02:47
created
src/ACL.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     {
75 75
         $config = Configuration::getOptionalConfig('acl.php');
76 76
         if (!$config->hasValue($id)) {
77
-            throw new Error\Exception('No ACL with id ' . var_export($id, true) . ' in config/acl.php.');
77
+            throw new Error\Exception('No ACL with id '.var_export($id, true).' in config/acl.php.');
78 78
         }
79 79
 
80 80
         return $config->getArray($id);
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
             case 'or':
138 138
                 return self::opOr($attributes, $rule);
139 139
             default:
140
-                throw new Error\Exception('Invalid ACL operation: ' . var_export($op, true));
140
+                throw new Error\Exception('Invalid ACL operation: '.var_export($op, true));
141 141
         }
142 142
     }
143 143
 
Please login to merge, or discard this patch.