/var/www/vhosts/ihelp.ro/httpdocs/vendor/nikic/php-parser/lib/PhpParser/Builder
NameSizeModeActions
ClassConst.php38160644editdlrm
Class_.php38240644editdlrm
Declaration.php9840644editdlrm
EnumCase.php19070644editdlrm
Enum_.php30150644editdlrm
FunctionLike.php17370644editdlrm
Function_.php16420644editdlrm
Interface_.php24910644editdlrm
Method.php37640644editdlrm
Namespace_.php10340644editdlrm
Param.php41960644editdlrm
Property.php40010644editdlrm
TraitUse.php15730644editdlrm
TraitUseAdaptation.php41840644editdlrm
Trait_.php20250644editdlrm
Use_.php12200644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/nikic/php-parser/lib/PhpParser/Builder/EnumCase.php (1907B)
name = $name; } /** * Sets the value. * * @param Node\Expr|string|int $value * * @return $this */ public function setValue($value) { $this->value = BuilderHelpers::normalizeValue($value); return $this; } /** * Sets doc comment for the constant. * * @param PhpParser\Comment\Doc|string $docComment Doc comment to set * * @return $this The builder instance (for fluid interface) */ public function setDocComment($docComment) { $this->attributes = [ 'comments' => [BuilderHelpers::normalizeDocComment($docComment)] ]; return $this; } /** * Adds an attribute group. * * @param Node\Attribute|Node\AttributeGroup $attribute * * @return $this The builder instance (for fluid interface) */ public function addAttribute($attribute) { $this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute); return $this; } /** * Returns the built enum case node. * * @return Stmt\EnumCase The built constant node */ public function getNode(): PhpParser\Node { return new Stmt\EnumCase( $this->name, $this->value, $this->attributeGroups, $this->attributes ); } }