/home/techb158/ileadtechnology.com/SSM/vendor/nikic/php-parser/lib/PhpParser/Builder
NameSizeModeActions
Class_.php31500644editdlrm
Declaration.php9840644editdlrm
FunctionLike.php18640644editdlrm
Function_.php11680644editdlrm
Interface_.php19970644editdlrm
Method.php32900644editdlrm
Namespace_.php10230644editdlrm
Param.php24910644editdlrm
Property.php32370644editdlrm
TraitUse.php15730644editdlrm
TraitUseAdaptation.php41840644editdlrm
Trait_.php15260644editdlrm
Use_.php12150644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/nikic/php-parser/lib/PhpParser/Builder/Param.php (2491B)
name = $name; } /** * Sets default value for the parameter. * * @param mixed $value Default value to use * * @return $this The builder instance (for fluid interface) */ public function setDefault($value) { $this->default = BuilderHelpers::normalizeValue($value); return $this; } /** * Sets type for the parameter. * * @param string|Node\Name|Node\NullableType|Node\UnionType $type Parameter type * * @return $this The builder instance (for fluid interface) */ public function setType($type) { $this->type = BuilderHelpers::normalizeType($type); if ($this->type == 'void') { throw new \LogicException('Parameter type cannot be void'); } return $this; } /** * Sets type for the parameter. * * @param string|Node\Name|Node\NullableType|Node\UnionType $type Parameter type * * @return $this The builder instance (for fluid interface) * * @deprecated Use setType() instead */ public function setTypeHint($type) { return $this->setType($type); } /** * Make the parameter accept the value by reference. * * @return $this The builder instance (for fluid interface) */ public function makeByRef() { $this->byRef = true; return $this; } /** * Make the parameter variadic * * @return $this The builder instance (for fluid interface) */ public function makeVariadic() { $this->variadic = true; return $this; } /** * Returns the built parameter node. * * @return Node\Param The built parameter node */ public function getNode() : Node { return new Node\Param( new Node\Expr\Variable($this->name), $this->default, $this->type, $this->byRef, $this->variadic ); } }