소스 검색

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