|
$articles = $this->articleRepository->findBy(criteria: ['state' => 'published'], orderBy: ['publicationDate' => 'DESC']);
|
|
$articles = $this->articleRepository->findBy(criteria: ['state' => 'published'], orderBy: ['publicationDate' => 'DESC']);
|
|
- $feedContent = $this->feedService->createFeed($articles, $type, $this->articleRepository->findLastPublicationDate());
|
|
+ $feedContent = $this->feedService->createFeed($articles, $this->articleRepository->findLastPublicationDate(), $type);
|