Skip to content

Commit 50b25c4

Browse files
Scrutinizer Auto-Fixes
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
1 parent db07acb commit 50b25c4

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

src/Tokenizer/Parser/Boundary.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ final class Boundary
2121
/**
2222
* @param string $string
2323
* @param array $matches
24-
* @param $regexBoundaries
24+
* @param string $regexBoundaries
2525
*
2626
* @return bool
2727
*/

src/Tokenizer/Parser/Numeral.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ final class Numeral
2121
/**
2222
* @param string $string
2323
* @param array $matches
24-
* @param $regexBoundaries
24+
* @param string $regexBoundaries
2525
*
2626
* @return bool
2727
*/

src/Tokenizer/Parser/Reserved.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ public static function isReservedPrecededByDotCharacter($previous)
3333
/**
3434
* @param string $string
3535
* @param array $matches
36-
* @param $regexReservedTopLevel
37-
* @param $regexBoundaries
36+
* @param string $regexReservedTopLevel
37+
* @param string $regexBoundaries
3838
*
3939
* @return bool
4040
*/
@@ -64,8 +64,8 @@ public static function getReservedTopLevelString($string, array &$matches)
6464
/**
6565
* @param string $string
6666
* @param $matches
67-
* @param $regexReservedNewLine
68-
* @param $regexBoundaries
67+
* @param string $regexReservedNewLine
68+
* @param string $regexBoundaries
6969
*
7070
* @return bool
7171
*/
@@ -97,8 +97,8 @@ public static function getReservedNewLineString($string, array &$matches)
9797
/**
9898
* @param string $upper
9999
* @param array $matches
100-
* @param $regexReserved
101-
* @param $regexBoundaries
100+
* @param string $regexReserved
101+
* @param string $regexBoundaries
102102
*
103103
* @return bool
104104
*/

src/Tokenizer/Parser/String.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ final class String
2424
*
2525
* @param string $string
2626
* @param array $matches
27-
* @param $regexFunction
27+
* @param string $regexFunction
2828
*
2929
* @return bool
3030
*/
@@ -49,7 +49,7 @@ public static function getFunctionString($string, array &$matches)
4949

5050
/**
5151
* @param string $string
52-
* @param $regexBoundaries
52+
* @param string $regexBoundaries
5353
*
5454
* @return array
5555
*/

0 commit comments

Comments
 (0)