Updated documentation to reflect thrown exceptions.

This commit is contained in:
Justin Hileman
2010-03-22 19:20:02 -04:00
parent c849d351f9
commit 0586105b5e
+3
View File
@@ -167,6 +167,7 @@ class Mustache {
* @param string $modifier
* @param string $tag_name
* @param array $context
* @throws MustacheException Unmatched section tag encountered.
* @return string
*/
protected function renderTag($modifier, $tag_name, &$context) {
@@ -308,6 +309,7 @@ class Mustache {
* @access protected
* @param string $tag_name
* @param array $context
* @throws MustacheException Unknown variable name.
* @return string
*/
protected function getVariable($tag_name, &$context) {
@@ -337,6 +339,7 @@ class Mustache {
*
* @access protected
* @param string $tag_name
* @throws MustacheException Unknown partial name.
* @return string
*/
protected function getPartial($tag_name) {