PhpParser\PrettyPrinterAbstract::pCommaSeparated PHP Method

pCommaSeparated() protected method

Pretty prints an array of nodes and implodes the printed values with commas.
protected pCommaSeparated ( array $nodes ) : string
$nodes array Array of Nodes to be printed
return string Comma separated pretty printed nodes
    protected function pCommaSeparated(array $nodes)
    {
        return $this->pImplode($nodes, ', ');
    }