mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix type hint in gen_stub.php
There is no ClassType class, only SimpleType. [ci skip]
This commit is contained in:
parent
a968055b77
commit
c1c1822e8c
1 changed files with 2 additions and 2 deletions
|
@ -600,14 +600,14 @@ class Type {
|
|||
}
|
||||
|
||||
class ArginfoType {
|
||||
/** @var ClassType[] $classTypes */
|
||||
/** @var SimpleType[] $classTypes */
|
||||
public $classTypes;
|
||||
|
||||
/** @var SimpleType[] $builtinTypes */
|
||||
private $builtinTypes;
|
||||
|
||||
/**
|
||||
* @param ClassType[] $classTypes
|
||||
* @param SimpleType[] $classTypes
|
||||
* @param SimpleType[] $builtinTypes
|
||||
*/
|
||||
public function __construct(array $classTypes, array $builtinTypes) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue