listing() public method

public listing ( array $elements )
$elements array
Example #1
0
 private function getIssueLabels(array $labels, StyleHelper $style)
 {
     if (0 === count($labels)) {
         $style->writeln(' N/A');
         $style->newLine();
         return;
     }
     $style->listing($labels);
 }