File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -548,7 +548,7 @@ public function parseComment()
548548 }
549549 // Include trailing \n as whitespace token
550550 if ($ this ->last < $ this ->len ) {
551- $ this ->last -- ;
551+ -- $ this ->last ;
552552 }
553553
554554 return new Token ($ token , Token::TYPE_COMMENT , Token::FLAG_COMMENT_BASH );
@@ -622,7 +622,7 @@ public function parseComment()
622622 }
623623 // Include trailing \n as whitespace token
624624 if ($ this ->last < $ this ->len ) {
625- $ this ->last -- ;
625+ -- $ this ->last ;
626626 }
627627
628628 return new Token ($ token , Token::TYPE_COMMENT , Token::FLAG_COMMENT_SQL );
Original file line number Diff line number Diff line change @@ -287,6 +287,7 @@ public function extract()
287287 $ str = str_replace ('\f ' , 'f ' , $ str );
288288 $ str = str_replace ('\v ' , 'v ' , $ str );
289289 $ str = stripcslashes ($ str );
290+
290291 return $ str ;
291292 case self ::TYPE_SYMBOL :
292293 $ str = $ this ->token ;
You can’t perform that action at this time.
0 commit comments