Overrides StylePluginBase::render
public function render() { $rows = []; foreach ($this->view->result as $row) { // @todo Include separator as an option. $rows[] = $row; } return [ '#theme' => $this->themeFunctions(), '#view' => $this->view, '#options' => $this->options, '#rows' => $rows, ]; }