recordTransformer = $recordTransformer; $this->storyTransformer = $storyTransformer; } public function transform() { return []; } public function includeRecords(SearchResultView $resultView) { return $this->collection($resultView->getRecords(), $this->recordTransformer); } public function includeStories(SearchResultView $resultView) { return $this->collection($resultView->getStories(), $this->storyTransformer); } }