summaryrefslogtreecommitdiff
path: root/inc/parser/parser.php
diff options
context:
space:
mode:
authorMatt Perry <matt@mattperry.com>2013-08-23 03:08:41 -0700
committerAndreas Gohr <andi@splitbrain.org>2013-08-23 15:54:32 +0200
commitc404cb3b0b4946f6308f66b6324a24489b2ef5b8 (patch)
tree037a2c24abfc1907e7233034fd839f6eeeb71ff8 /inc/parser/parser.php
parentce5e852908a745e41536081ceb92448a0322e0a9 (diff)
downloadrpg-c404cb3b0b4946f6308f66b6324a24489b2ef5b8.tar.gz
rpg-c404cb3b0b4946f6308f66b6324a24489b2ef5b8.tar.bz2
Fix CodeSniffer violations for PHP files
Fix violations for Squiz.Commenting.DocCommentAlignment.SpaceBeforeTag Conflicts: inc/parser/xhtml.php
Diffstat (limited to 'inc/parser/parser.php')
-rw-r--r--inc/parser/parser.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/inc/parser/parser.php b/inc/parser/parser.php
index 064178a54..3caad834a 100644
--- a/inc/parser/parser.php
+++ b/inc/parser/parser.php
@@ -45,9 +45,9 @@ $PARSER_MODES = array(
//-------------------------------------------------------------------
/**
-* Sets up the Lexer with modes and points it to the Handler
-* For an intro to the Lexer see: wiki:parser
-*/
+ * Sets up the Lexer with modes and points it to the Handler
+ * For an intro to the Lexer see: wiki:parser
+ */
class Doku_Parser {
var $Handler;
@@ -70,9 +70,9 @@ class Doku_Parser {
}
/**
- * PHP preserves order of associative elements
- * Mode sequence is important
- */
+ * PHP preserves order of associative elements
+ * Mode sequence is important
+ */
function addMode($name, & $Mode) {
if ( !isset($this->modes['base']) ) {
$this->addBaseMode(new Doku_Parser_Mode_base());
@@ -134,7 +134,7 @@ class Doku_Parser {
* all modes are registered
*
* @author Harry Fuecks <hfuecks@gmail.com>
-*/
+ */
class Doku_Parser_Mode {
/**