@@ -10,7 +10,7 @@ |
||
10 | 10 | public function run(array $args, \DomElement $element) { |
11 | 11 | $const_name = strtoupper(trim($args[0])); |
12 | 12 | if (!defined($const_name)) { |
13 | - throw new \Exception($const_name . ' is not a defined constant'); |
|
13 | + throw new \Exception($const_name.' is not a defined constant'); |
|
14 | 14 | } |
15 | 15 | return constant($const_name); |
16 | 16 | } |