@@ -82,16 +82,16 @@ |
||
| 82 | 82 | $values = $arrayUtils->arrayize($values); |
| 83 | 83 | } elseif (!is_array($values)) { |
| 84 | 84 | throw new \Exception( |
| 85 | - 'Filter Authorize: Attribute values is neither string nor array: ' . var_export($attribute, true) |
|
| 85 | + 'Filter Authorize: Attribute values is neither string nor array: '.var_export($attribute, true) |
|
| 86 | 86 | ); |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | foreach ($values as $value) { |
| 90 | 90 | if (!is_string($value)) { |
| 91 | 91 | throw new \Exception( |
| 92 | - 'Filter Authorize: Each value should be a string for attribute: ' . |
|
| 93 | - var_export($attribute, true) . ' value: ' . var_export($value, true) . |
|
| 94 | - ' Config is: ' . var_export($config, true) |
|
| 92 | + 'Filter Authorize: Each value should be a string for attribute: '. |
|
| 93 | + var_export($attribute, true).' value: '.var_export($value, true). |
|
| 94 | + ' Config is: '.var_export($config, true) |
|
| 95 | 95 | ); |
| 96 | 96 | } |
| 97 | 97 | } |