@@ -74,7 +74,7 @@ discard block |
||
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 |
||
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 |