Skip to content

Commit acf538a

Browse files
committed
Param: do not resolve types if it's not possible (fix code style)
1 parent 2e6cecb commit acf538a

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/DocBlock/Tags/Param.php

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,7 @@ public function __toString() : string
145145
. ($this->description ? ' ' . $this->description : '');
146146
}
147147

148-
/**
149-
* @param string $str
150-
*
151-
* @return bool
152-
*/
153-
private static function strStartsWithVariable(string $str): bool
148+
private static function strStartsWithVariable(string $str) : bool
154149
{
155150
return strpos($str, '$') === 0
156151
||

0 commit comments

Comments
 (0)