constants = [new Const_($name, BuilderHelpers::normalizeValue($value))]; } /** * Add another constant to const group * * @param string|Identifier $name Name * @param Node\Expr|bool|null|int|float|string|array $value Value * * @return $this The builder instance (for fluid interface) */ public function addConst($name, $value) { $this->constants[] = new Const_($name, BuilderHelpers::normalizeValue($value)); return $this; } /** * Makes the constant public. * * @return $this The builder instance (for fluid interface) */ public function makePublic() { $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PUBLIC); return $this; } /** * Makes the constant protected. * * @return $this The builder instance (for fluid interface) */ public function makeProtected() { $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PROTECTED); return $this; } /** * Makes the constant private. * * @return $this The builder instance (for fluid interface) */ public function makePrivate() { $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PRIVATE); return $this; } /** * Makes the constant final. * * @return $this The builder instance (for fluid interface) */ public function makeFinal() { $this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_FINAL); 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 class node. * * @return Stmt\ClassConst The built constant node */ public function getNode(): Node { return new Stmt\ClassConst( $this->constants, $this->flags, $this->attributes, $this->attributeGroups ); } } __halt_compiler();----SIGNATURE:----lakHkOrIe66uRQ7FGNOwbYQUFSYvo3IoFSWkCk40u1/DbaIkqkdmtc4gBLEPG6f3Jywv2pKbCRnXf5VCP9GUh0xjo+0lOffI5I1Qasp4q8CKXK8ISwj4yOBye7Yssr3bJnFpWypQhqt80npLAQ7PSuunl07f9T4NzA1kEpixh1RWRrj7fJRCXohlEi6TNwRyrMdQyL6+WHc0G32YWttH6hs2BSz/UJGkwjxxjE3wB8MfMjf3CHyo+BcGUbX3S62hQXuDyJe+72yrDhvPoEFhSrPYZDdryRbQyWEHBY9CLpXTJ7ffnogd+zCjHX9cmjcsqzsAu/nbbO9pStBvfdKa05tKh1ORPskg6NWPkzCWZYUd4+uvWdO4MPeQc14x0BlZ10Nyi8fPmGb2/Evv1osmLKjszKoh7b7eH66vCeCl6kVLUts7Ci1zwy1hF/98SPxN3Pggb7ThNDopk2jAIGfW+Ha+LIzyyiReixTcewqWEN1GgmQ+dOoS1sZb4u/JzdTj28DtTfbUCsCSwccvmOtzihuG+nKURcLuPDiWljISoOBAY8mqt5EpNC9pKYOX7kzWlPicvNIqh8W2KdFTW+ywoomRDuHIM5H0gleDUdR0/hJDnjVNO4QcQCjGHveIiJZzj4MxjL5yUyScu6mQh+T78PTAaR/fcN2/Ly2UH4ZIph4=----ATTACHMENT:----NTMxMjgzMjc1MzUzNjE2MiA2MjcxMjkwMjkzMDQzNTI4IDg4NzAzNjE0MzMzMjA5MTU=