PhpParser\PrettyPrinterAbstract::pCommaSeparated PHP 메소드

pCommaSeparated() 보호된 메소드

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
리턴 string Comma separated pretty printed nodes
    protected function pCommaSeparated(array $nodes)
    {
        return $this->pImplode($nodes, ', ');
    }