From e006d47466608b54d2913fc3ec4fb8d6659d5ad0 Mon Sep 17 00:00:00 2001 From: Scrutinizer Auto-Fixer Date: Wed, 24 Dec 2014 01:53:43 +0000 Subject: [PATCH] Scrutinizer Auto-Fixes This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com --- src/Tokenizer/Parser/Boundary.php | 2 +- src/Tokenizer/Parser/Comment.php | 6 +++--- src/Tokenizer/Parser/Numeral.php | 2 +- src/Tokenizer/Parser/Quoted.php | 2 +- src/Tokenizer/Parser/String.php | 4 ++-- src/Tokenizer/Parser/UserDefined.php | 2 +- src/Tokenizer/Parser/WhiteSpace.php | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Tokenizer/Parser/Boundary.php b/src/Tokenizer/Parser/Boundary.php index 99fc0ca..b4371a2 100644 --- a/src/Tokenizer/Parser/Boundary.php +++ b/src/Tokenizer/Parser/Boundary.php @@ -20,7 +20,7 @@ final class Boundary { /** * @param Tokenizer $tokenizer - * @param $string + * @param string $string * @param array $matches */ public static function isBoundary(Tokenizer $tokenizer, $string, array &$matches) diff --git a/src/Tokenizer/Parser/Comment.php b/src/Tokenizer/Parser/Comment.php index 78cef30..6697346 100644 --- a/src/Tokenizer/Parser/Comment.php +++ b/src/Tokenizer/Parser/Comment.php @@ -20,7 +20,7 @@ final class Comment { /** * @param Tokenizer $tokenizer - * @param $string + * @param string $string */ public static function isComment(Tokenizer $tokenizer, $string) { @@ -50,7 +50,7 @@ protected static function isTwoCharacterComment($string) } /** - * @param $string + * @param string $string * * @return bool */ @@ -60,7 +60,7 @@ protected static function startsWithDoubleDash($string) } /** - * @param $string + * @param string $string * * @return bool */ diff --git a/src/Tokenizer/Parser/Numeral.php b/src/Tokenizer/Parser/Numeral.php index f7c7a71..93d5ab9 100644 --- a/src/Tokenizer/Parser/Numeral.php +++ b/src/Tokenizer/Parser/Numeral.php @@ -20,7 +20,7 @@ final class Numeral { /** * @param Tokenizer $tokenizer - * @param $string + * @param string $string * @param array $matches * * @return array diff --git a/src/Tokenizer/Parser/Quoted.php b/src/Tokenizer/Parser/Quoted.php index 9ba66d2..fe778f9 100644 --- a/src/Tokenizer/Parser/Quoted.php +++ b/src/Tokenizer/Parser/Quoted.php @@ -20,7 +20,7 @@ final class Quoted { /** * @param Tokenizer $tokenizer - * @param $string + * @param string $string */ public static function isQuoted(Tokenizer $tokenizer, $string) { diff --git a/src/Tokenizer/Parser/String.php b/src/Tokenizer/Parser/String.php index 6ad687d..d34a919 100644 --- a/src/Tokenizer/Parser/String.php +++ b/src/Tokenizer/Parser/String.php @@ -20,7 +20,7 @@ final class String { /** * @param Tokenizer $tokenizer - * @param $string + * @param string $string * @param array $matches */ public static function isFunction(Tokenizer $tokenizer, $string, array &$matches) @@ -61,7 +61,7 @@ protected static function getFunctionString($string, array &$matches) /** * @param Tokenizer $tokenizer - * @param $string + * @param string $string * @param array $matches */ public static function getNonReservedString(Tokenizer $tokenizer, $string, array &$matches) diff --git a/src/Tokenizer/Parser/UserDefined.php b/src/Tokenizer/Parser/UserDefined.php index 3d695f2..4c3ad9e 100644 --- a/src/Tokenizer/Parser/UserDefined.php +++ b/src/Tokenizer/Parser/UserDefined.php @@ -20,7 +20,7 @@ final class UserDefined { /** * @param Tokenizer $tokenizer - * @param $string + * @param string $string * * @return array */ diff --git a/src/Tokenizer/Parser/WhiteSpace.php b/src/Tokenizer/Parser/WhiteSpace.php index 6e811c7..9332cb0 100644 --- a/src/Tokenizer/Parser/WhiteSpace.php +++ b/src/Tokenizer/Parser/WhiteSpace.php @@ -20,7 +20,7 @@ final class WhiteSpace { /** * @param Tokenizer $tokenizer - * @param $string + * @param string $string * @param array $matches */ public static function isWhiteSpace(Tokenizer $tokenizer, $string, array &$matches)