Adds multiple statements.
(PhpParser\Node\Stmt|PhpParser\Builder)[] $stmts The statements to add:
$this The builder instance (for fluid interface)
public function addStmts(array $stmts) { foreach ($stmts as $stmt) { $this->addStmt($stmt); } return $this; }