/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/Trait_.php (1526B)
name = $name; } /** * Adds a statement. * * @param Stmt|PhpParser\Builder $stmt The statement to add * * @return $this The builder instance (for fluid interface) */ public function addStmt($stmt) { $stmt = BuilderHelpers::normalizeNode($stmt); if ($stmt instanceof Stmt\Property) { $this->properties[] = $stmt; } elseif ($stmt instanceof Stmt\ClassMethod) { $this->methods[] = $stmt; } elseif ($stmt instanceof Stmt\TraitUse) { $this->uses[] = $stmt; } else { throw new \LogicException(sprintf('Unexpected node of type "%s"', $stmt->getType())); } return $this; } /** * Returns the built trait node. * * @return Stmt\Trait_ The built interface node */ public function getNode() : PhpParser\Node { return new Stmt\Trait_( $this->name, [ 'stmts' => array_merge($this->uses, $this->properties, $this->methods) ], $this->attributes ); } }