Searched refs:prettyPrint (Results 1 – 9 of 9) sorted by relevance
15 public function prettyPrint(array $stmts): string; function
265 public function prettyPrint(array $stmts): string { function in PhpParser\\PrettyPrinterAbstract296 $p = "<?php" . $this->newline . $this->newline . $this->prettyPrint($stmts);
175 $prettyPrinter->prettyPrint($stmts);185 $prettyPrinter->prettyPrint($stmts);268 $code = $prettyPrinter->prettyPrint($stmts);291 $code = $prettyPrinter->prettyPrint($stmts);
23 return $pp->prettyPrint([$node]);
172 $prettyPrinter->prettyPrint($stmts)351 $prettyPrinter->prettyPrint($stmts)
204 $code = "<?php\n" . $prettyPrinter->prettyPrint($stmts);
23 The pretty printer has three basic printing methods: `prettyPrint()`, `prettyPrintFile()` and27 `prettyPrint()` also takes a statement array, but produces code which is valid inside an already
245 $code = $prettyPrinter->prettyPrint($stmts);258 again converted to code using `PhpParser\PrettyPrinter\Standard->prettyPrint()`.260 The `prettyPrint()` method pretty prints a statements array. It is also possible to pretty print on…
152 The pretty printer should only be invoked using the `prettyPrint()`, `prettyPrintFile()` and
Completed in 18 milliseconds