PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
Type
/
Editing: ConditionalTypeForParameterNode.php
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\Type; use PHPStan\PhpDocParser\Ast\NodeAttributes; use function sprintf; class ConditionalTypeForParameterNode implements TypeNode { use NodeAttributes; /** @var string */ public $parameterName; /** @var TypeNode */ public $targetType; /** @var TypeNode */ public $if; /** @var TypeNode */ public $else; /** @var bool */ public $negated; public function __construct(string $parameterName, TypeNode $targetType, TypeNode $if, TypeNode $else, bool $negated) { $this->parameterName = $parameterName; $this->targetType = $targetType; $this->if = $if; $this->else = $else; $this->negated = $negated; } public function __toString(): string { return sprintf( '(%s %s %s ? %s : %s)', $this->parameterName, $this->negated ? 'is not' : 'is', $this->targetType, $this->if, $this->else ); } }
SAVE
CANCEL