Skip to content

Commit c1c1822

Browse files
committed
Fix type hint in gen_stub.php
There is no ClassType class, only SimpleType. [ci skip]
1 parent a968055 commit c1c1822

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/gen_stub.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,14 +600,14 @@ function ($type) { return $type->name; },
600600
}
601601

602602
class ArginfoType {
603-
/** @var ClassType[] $classTypes */
603+
/** @var SimpleType[] $classTypes */
604604
public $classTypes;
605605

606606
/** @var SimpleType[] $builtinTypes */
607607
private $builtinTypes;
608608

609609
/**
610-
* @param ClassType[] $classTypes
610+
* @param SimpleType[] $classTypes
611611
* @param SimpleType[] $builtinTypes
612612
*/
613613
public function __construct(array $classTypes, array $builtinTypes) {

0 commit comments

Comments
 (0)