Lines Matching refs:phpDocType
829 public ?Type $phpDocType; variable in ArgInfo
842 ?Type $phpDocType, argument
849 $this->setTypes($type, $phpDocType);
879 if ($this->phpDocType) {
880 return $this->phpDocType;
915 private function setTypes(?Type $type, ?Type $phpDocType): void argument
918 $this->phpDocType = $phpDocType;
1170 public ?Type $phpDocType; variable in ReturnInfo
1174 …public function __construct(bool $byRef, ?Type $type, ?Type $phpDocType, bool $tentativeReturnType… argument
1176 $this->setTypes($type, $phpDocType, $tentativeReturnType);
1187 return $this->type ?? $this->phpDocType;
1190 private function setTypes(?Type $type, ?Type $phpDocType, bool $tentativeReturnType): void argument
1193 $this->phpDocType = $phpDocType;
1199 $type = $this->phpDocType ?? $this->type;
1533 … if ($this->return->refcount !== ReturnInfo::REFCOUNT_1 && $this->return->phpDocType === null) {
1537 $type = $this->return->phpDocType ?? $this->return->type;
2248 $constType = ($const->phpDocType ?? $const->type)->tryToSimpleType();
2356 public ?Type $phpDocType; variable in VariableLike
2369 ?Type $phpDocType, argument
2377 $this->phpDocType = $phpDocType;
2399 $type = $this->phpDocType ?? $this->type;
2562 ?Type $phpDocType, argument
2581 …parent::__construct($flags, $type, $phpDocType, $link, $phpVersionIdMinimumCompatibility, $attribu…
2589 ($this->phpDocType ?? $this->type)->tryToSimpleType(),
2642 $typeElement = ($this->phpDocType ?? $this->type)->getTypeForDoc($doc);
2660 $typeElement = ($this->phpDocType ?? $this->type)->getTypeForDoc($doc);
2682 $type = $this->phpDocType ?? $this->type;
3018 ?Type $phpDocType, argument
3034 …parent::__construct($flags, $type, $phpDocType, $link, $phpVersionIdMinimumCompatibility, $attribu…
4528 $phpDocType = null;
4537 $phpDocType = $tag->getType();
4552 if ($type === null && $phpDocType === null) {
4557 $constPhpDocType = $phpDocType ? Type::fromString($phpDocType) : null;
4602 $phpDocType = null;
4611 $phpDocType = $tag->getType();
4623 if ($propertyType === null && !$phpDocType) {
4642 $phpDocType ? Type::fromString($phpDocType) : null,
6347 $aliasedReturnType = $aliasedReturn->type ?? $aliasedReturn->phpDocType;
6348 $aliasReturnType = $aliasReturn->type ?? $aliasReturn->phpDocType;
6354 $aliasedPhpDocReturnType = $aliasedReturn->phpDocType;
6355 $aliasPhpDocReturnType = $aliasReturn->phpDocType;