Преглед на файлове

Remove namespace from exception.

Justin Hileman преди 13 години
родител
ревизия
36fbb28387
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/Mustache/Mustache.php

+ 1 - 1
src/Mustache/Mustache.php

@@ -104,7 +104,7 @@ class Mustache_Mustache {
 
 		if (isset($options['escape'])) {
 			if (!is_callable($options['escape'])) {
-				throw new \InvalidArgumentException('Mustache Constructor "escape" option must be callable');
+				throw new InvalidArgumentException('Mustache Constructor "escape" option must be callable');
 			}
 
 			$this->escape = $options['escape'];