PHPStan\Reflection\Php\DummyOptionalParameter::__construct PHP Method

__construct() public method

public __construct ( string $name, PHPStan\Type\Type $type, boolean $passedByReference = false )
$name string
$type PHPStan\Type\Type
$passedByReference boolean
    public function __construct(string $name, Type $type, bool $passedByReference = false)
    {
        $this->name = $name;
        $this->type = $type;
        $this->passedByReference = $passedByReference;
    }