Skip to content

Commit 3020056

Browse files
committed
[BUGFIX] Fix the parameter name in a type annotation
1 parent b3e83b8 commit 3020056

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

config/phpstan-baseline.neon

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,6 @@ parameters:
8484
count: 1
8585
path: ../src/Property/Charset.php
8686

87-
-
88-
message: '#^PHPDoc tag @param references unknown parameter\: \$oCharset$#'
89-
identifier: parameter.notFound
90-
count: 1
91-
path: ../src/Property/Charset.php
92-
9387
-
9488
message: '#^Call to an undefined method Sabberworm\\CSS\\OutputFormat\:\:comments\(\)\.$#'
9589
identifier: method.notFound

src/Property/Charset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function getLineNo(): int
5656
}
5757

5858
/**
59-
* @param string|CSSString $oCharset
59+
* @param string|CSSString $sCharset
6060
*/
6161
public function setCharset($sCharset): void
6262
{

0 commit comments

Comments
 (0)