diff options
author | Andreas Gohr <andi@splitbrain.org> | 2015-01-10 16:53:42 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2015-01-10 16:53:42 +0100 |
commit | cbc6fa6b91a980ef8ad499c1c7d9bf884d9017c1 (patch) | |
tree | 8709a170db6b836c8f6ea834a6c83ea607a008cc /inc/parser/handler.php | |
parent | d7862ff55cfced5ef441903c84af1c622d7b2736 (diff) | |
parent | 276820f70d7e96ee375735c1a15bdc0a8331a5a7 (diff) | |
download | rpg-cbc6fa6b91a980ef8ad499c1c7d9bf884d9017c1.tar.gz rpg-cbc6fa6b91a980ef8ad499c1c7d9bf884d9017c1.tar.bz2 |
Merge pull request #1000 from splitbrain/scrutinizer-patch-1
Scrutinizer Auto-Fixes
Diffstat (limited to 'inc/parser/handler.php')
-rw-r--r-- | inc/parser/handler.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/inc/parser/handler.php b/inc/parser/handler.php index 731c19828..b8e2de82a 100644 --- a/inc/parser/handler.php +++ b/inc/parser/handler.php @@ -21,6 +21,9 @@ class Doku_Handler { $this->CallWriter = new Doku_Handler_CallWriter($this); } + /** + * @param string $handler + */ function _addCall($handler, $args, $pos) { $call = array($handler,$args, $pos); $this->CallWriter->writeCall($call); @@ -133,6 +136,9 @@ class Doku_Handler { return true; } + /** + * @param string $name + */ function _nestingTag($match, $state, $pos, $name) { switch ( $state ) { case DOKU_LEXER_ENTER: |