function Standard::pNewOperand
2 calls to Standard::pNewOperand()
- Standard::pExpr_Instanceof in vendor/
nikic/ php-parser/ lib/ PhpParser/ PrettyPrinter/ Standard.php - Standard::pExpr_New in vendor/
nikic/ php-parser/ lib/ PhpParser/ PrettyPrinter/ Standard.php
File
-
vendor/
nikic/ php-parser/ lib/ PhpParser/ PrettyPrinter/ Standard.php, line 1153
Class
Namespace
PhpParser\PrettyPrinterCode
protected function pNewOperand(Node $node) : string {
if (!$this->newOperandRequiresParens($node)) {
return $this->p($node);
}
else {
return '(' . $this->p($node) . ')';
}
}