浏览代码

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'];