Skip to content

Commit bd8b907

Browse files
committed
More cleanup of the Rector changes
1 parent 2d2ac4e commit bd8b907

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

src/CSSList/CSSList.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,8 @@ private static function parseAtRule(ParserState $oParserState)
241241
/**
242242
* Tests an identifier for a given value. Since identifiers are all keywords, they can be vendor-prefixed.
243243
* We need to check for these versions too.
244+
*
245+
* @param string $sIdentifier
244246
*/
245247
private static function identifierIs($sIdentifier, string $sMatch): bool
246248
{

src/OutputFormat.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,6 @@ public function set($aNames, $mValue)
223223
}
224224

225225
/**
226-
* @param string $sMethodName
227226
* @param array<array-key, mixed> $aArguments
228227
*
229228
* @return mixed
@@ -303,7 +302,7 @@ public function level()
303302
/**
304303
* Creates an instance of this class without any particular formatting settings.
305304
*/
306-
public static function create(): OutputFormat
305+
public static function create(): self
307306
{
308307
return new OutputFormat();
309308
}

src/Value/Color.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,6 @@ public static function parse(ParserState $oParserState, bool $bIgnoreCase = fals
103103
}
104104

105105
/**
106-
* @param float $fVal
107-
* @param float $fFromMin
108-
* @param float $fFromMax
109-
* @param float $fToMin
110-
* @param float $fToMax
111-
*
112106
* @return float
113107
*/
114108
private static function mapRange(float $fVal, float $fFromMin, float $fFromMax, float $fToMin, float $fToMax)

0 commit comments

Comments
 (0)