repository->getContentService()->loadContent($contentId); $contents[$content->id] = $content; } break; case self::MATCH_CONTENT_REMOTE_ID: foreach($match as $contentRemoteId) { $content = $this->repository->getContentService()->loadContentByRemoteId($contentRemoteId); $contents[$content->id] = $content; } break; } return new ContentCollection($contents); } return parent::matchContent($conditions, $sort, $offset, $limit); } }