Lines Matching refs:phpDocType

814     public ?Type $phpDocType;  variable in ArgInfo
827 ?Type $phpDocType, argument
834 $this->setTypes($type, $phpDocType);
864 if ($this->phpDocType) {
865 return $this->phpDocType;
900 private function setTypes(?Type $type, ?Type $phpDocType): void argument
903 $this->phpDocType = $phpDocType;
1155 public ?Type $phpDocType; variable in ReturnInfo
1159 …public function __construct(bool $byRef, ?Type $type, ?Type $phpDocType, bool $tentativeReturnType… argument
1161 $this->setTypes($type, $phpDocType, $tentativeReturnType);
1172 return $this->type ?? $this->phpDocType;
1175 private function setTypes(?Type $type, ?Type $phpDocType, bool $tentativeReturnType): void argument
1178 $this->phpDocType = $phpDocType;
1184 $type = $this->phpDocType ?? $this->type;
1463 … if ($this->return->refcount !== ReturnInfo::REFCOUNT_1 && $this->return->phpDocType === null) {
1467 $type = $this->return->phpDocType ?? $this->return->type;
2126 $constType = ($const->phpDocType ?? $const->type)->tryToSimpleType();
2234 public ?Type $phpDocType; variable in VariableLike
2246 ?Type $phpDocType, argument
2253 $this->phpDocType = $phpDocType;
2274 $type = $this->phpDocType ?? $this->type;
2435 ?Type $phpDocType, argument
2451 …parent::__construct($flags, $type, $phpDocType, $link, $phpVersionIdMinimumCompatibility, $attribu…
2459 ($this->phpDocType ?? $this->type)->tryToSimpleType(),
2512 $typeElement = ($this->phpDocType ?? $this->type)->getTypeForDoc($doc);
2530 $typeElement = ($this->phpDocType ?? $this->type)->getTypeForDoc($doc);
2551 $simpleType = ($this->phpDocType ?? $this->type)->tryToSimpleType();
2769 ?Type $phpDocType, argument
2781 …parent::__construct($flags, $type, $phpDocType, $link, $phpVersionIdMinimumCompatibility, $attribu…
4064 $phpDocType = null;
4072 $phpDocType = $tag->getType();
4085 if ($type === null && $phpDocType === null) {
4095 $phpDocType ? Type::fromString($phpDocType) : null,
4119 $phpDocType = null;
4127 $phpDocType = $tag->getType();
4137 if ($propertyType === null && !$phpDocType) {
4156 $phpDocType ? Type::fromString($phpDocType) : null,
5809 $aliasedReturnType = $aliasedReturn->type ?? $aliasedReturn->phpDocType;
5810 $aliasReturnType = $aliasReturn->type ?? $aliasReturn->phpDocType;
5816 $aliasedPhpDocReturnType = $aliasedReturn->phpDocType;
5817 $aliasPhpDocReturnType = $aliasReturn->phpDocType;