public function formatBatch(array $records)
 {
     foreach ($records as $key => $value) {
         $records[$key] = $this->addAdditionalInfo($value);
     }
     return $this->formatter->formatBatch($records);
 }
예제 #2
0
 /**
  * @override
  * @inheritDoc
  */
 public function formatBatch(array $records)
 {
     return $this->model->formatBatch($records);
 }