name = $name; $this->by_ref = $by_ref; $this->type = $type; $this->signature_type = $type; $this->is_optional = $is_optional; $this->is_nullable = $is_nullable; $this->is_variadic = $is_variadic; $this->location = $location; $this->type_location = $type_location; $this->signature_type_location = $type_location; } public function __toString() { return ($this->type ?: 'mixed') . ($this->is_variadic ? '...' : '') . ($this->is_optional ? '=' : ''); } }