Skip to content

Commit 20e749a

Browse files
committed
Properly document parameter type
Signed-off-by: Michal Čihař <michal@cihar.com>
1 parent c35cd43 commit 20e749a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/Components/CaseExpression.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ public static function parse(Parser $parser, TokensList $list, array $options =
200200
}
201201

202202
/**
203-
* @param Expression $component the component to be built
204-
* @param array $options parameters for building
203+
* @param CaseExpression $component the component to be built
204+
* @param array $options parameters for building
205205
*
206206
* @return string
207207
*/

src/Components/ExpressionArray.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ public static function parse(Parser $parser, TokensList $list, array $options =
110110
}
111111

112112
/**
113-
* @param Expression[] $component the component to be built
114-
* @param array $options parameters for building
113+
* @param ExpressionArray $component the component to be built
114+
* @param array $options parameters for building
115115
*
116116
* @return string
117117
*/

src/Components/UnionKeyword.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
class UnionKeyword extends Component
2020
{
2121
/**
22-
* @param SelectStatement[] $component the component to be built
23-
* @param array $options parameters for building
22+
* @param UnionKeyword[] $component the component to be built
23+
* @param array $options parameters for building
2424
*
2525
* @return string
2626
*/

0 commit comments

Comments
 (0)