Searched refs:pStmts (Results 1 – 3 of 3) sorted by relevance
100 …* The `PrettyPrinterAbstract::pStmts()` method now emits a leading newline if the statement list i…101 Custom pretty printers should remove the explicit newline before `pStmts()` calls.108 . "\n" . '{' . "\n" . $this->pStmts($node->stmts) . "\n" . '}';117 . "\n" . '{' . $this->pStmts($node->stmts) . "\n" . '}';
662 . ' {' . $this->pStmts($node->stmts) . $this->nl . '}';752 . $this->nl . $this->pStmts($node->stmts, false);897 . $this->pStmts($node->stmts) . $this->nl . '}'904 . $this->pStmts($node->stmts) . $this->nl . '}';920 . ') {' . $this->pStmts($node->stmts) . $this->nl . '}';927 . $this->pStmts($node->stmts) . $this->nl . '}';932 . $this->pStmts($node->stmts) . $this->nl . '}';936 return 'do {' . $this->pStmts($node->stmts) . $this->nl942 . $this->pStmts($node->cases) . $this->nl . '}';947 . $this->pStmts($node->stmts);[all …]
269 return ltrim($this->handleMagicTokens($this->pStmts($stmts, false)));348 protected function pStmts(array $nodes, bool $indent = true): string { function in PhpParser\\PrettyPrinterAbstract578 $result = "<?php" . $this->newline . $this->pStmts($stmts, false);
Completed in 12 milliseconds