Skip to content

Commit 8e6112c

Browse files
apply new coding standard - use strict types wherever possible
1 parent 066b323 commit 8e6112c

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/Helper/PhpToDocTypeTransformer.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ public function __construct(private readonly FqnNameResolver $fqnNameResolver)
1414
{
1515
}
1616

17-
/**
18-
* @param mixed $default
19-
*/
20-
public function transform(Tokens $tokens, ?TypeAnalysis $typeAnalysis, $default = null): string
17+
public function transform(Tokens $tokens, ?TypeAnalysis $typeAnalysis, mixed $default = null): string
2118
{
2219
if ($typeAnalysis === null) {
2320
$type = 'mixed';

0 commit comments

Comments
 (0)