Lines Matching refs:phpDocType

818     public ?Type $phpDocType;  variable in ArgInfo
831 ?Type $phpDocType, argument
838 $this->setTypes($type, $phpDocType);
868 if ($this->phpDocType) {
869 return $this->phpDocType;
904 private function setTypes(?Type $type, ?Type $phpDocType): void argument
907 $this->phpDocType = $phpDocType;
1132 public ?Type $phpDocType; variable in ReturnInfo
1136 …public function __construct(bool $byRef, ?Type $type, ?Type $phpDocType, bool $tentativeReturnType… argument
1138 $this->setTypes($type, $phpDocType, $tentativeReturnType);
1149 return $this->type ?? $this->phpDocType;
1152 private function setTypes(?Type $type, ?Type $phpDocType, bool $tentativeReturnType): void argument
1155 $this->phpDocType = $phpDocType;
1161 $type = $this->phpDocType ?? $this->type;
1414 … if ($this->return->refcount !== ReturnInfo::REFCOUNT_1 && $this->return->phpDocType === null) {
1418 $type = $this->return->phpDocType ?? $this->return->type;
1617 if ($constType === null && $const->phpDocType) {
1618 $constType = $const->phpDocType->tryToSimpleType();
1716 public ?Type $phpDocType; variable in VariableLike
1723 ?Type $phpDocType, argument
1728 $this->phpDocType = $phpDocType;
1852 ?Type $phpDocType, argument
1865 parent::__construct($flags, $phpDocType, $link, $phpVersionIdMinimumCompatibility);
1875 $this->phpDocType->tryToSimpleType(),
1910 if ($this->phpDocType) {
1912 $fieldsynopsisElement->appendChild($this->phpDocType->getTypeForDoc($doc));
1943 $type = $this->phpDocType->tryToSimpleType();
2118 ?Type $phpDocType, argument
2130 parent::__construct($flags, $phpDocType, $link, $phpVersionIdMinimumCompatibility);
2293 $type = $this->phpDocType ?? $this->type;
3382 $phpDocType = null;
3390 $phpDocType = $tag->getType();
3401 if ($phpDocType === null) {
3410 Type::fromString($phpDocType),
3428 $phpDocType = null;
3436 $phpDocType = $tag->getType();
3446 if ($propertyType === null && !$phpDocType) {
3465 $phpDocType ? Type::fromString($phpDocType) : null,
4813 $aliasedReturnType = $aliasedReturn->type ?? $aliasedReturn->phpDocType;
4814 $aliasReturnType = $aliasReturn->type ?? $aliasReturn->phpDocType;
4820 $aliasedPhpDocReturnType = $aliasedReturn->phpDocType;
4821 $aliasPhpDocReturnType = $aliasReturn->phpDocType;