PhpParser\PrettyPrinterAbstract::pPostfixOp PHP Method

pPostfixOp() protected method

protected pPostfixOp ( $type, phpparser\Node $node, $operatorString )
$node phpparser\Node
    protected function pPostfixOp($type, Node $node, $operatorString)
    {
        list($precedence, $associativity) = $this->precedenceMap[$type];
        return $this->pPrec($node, $precedence, $associativity, -1) . $operatorString;
    }