Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Tokenizer/Parser/Boundary.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ final class Boundary
/**
* @param string $string
* @param array $matches
* @param $regexBoundaries
* @param string $regexBoundaries
*
* @return bool
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Tokenizer/Parser/Numeral.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ final class Numeral
/**
* @param string $string
* @param array $matches
* @param $regexBoundaries
* @param string $regexBoundaries
*
* @return bool
*/
Expand Down
12 changes: 6 additions & 6 deletions src/Tokenizer/Parser/Reserved.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ public static function isReservedPrecededByDotCharacter($previous)
/**
* @param string $string
* @param array $matches
* @param $regexReservedTopLevel
* @param $regexBoundaries
* @param string $regexReservedTopLevel
* @param string $regexBoundaries
*
* @return bool
*/
Expand Down Expand Up @@ -64,8 +64,8 @@ public static function getReservedTopLevelString($string, array &$matches)
/**
* @param string $string
* @param $matches
* @param $regexReservedNewLine
* @param $regexBoundaries
* @param string $regexReservedNewLine
* @param string $regexBoundaries
*
* @return bool
*/
Expand Down Expand Up @@ -97,8 +97,8 @@ public static function getReservedNewLineString($string, array &$matches)
/**
* @param string $upper
* @param array $matches
* @param $regexReserved
* @param $regexBoundaries
* @param string $regexReserved
* @param string $regexBoundaries
*
* @return bool
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Tokenizer/Parser/String.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final class String
*
* @param string $string
* @param array $matches
* @param $regexFunction
* @param string $regexFunction
*
* @return bool
*/
Expand All @@ -49,7 +49,7 @@ public static function getFunctionString($string, array &$matches)

/**
* @param string $string
* @param $regexBoundaries
* @param string $regexBoundaries
*
* @return array
*/
Expand Down