Rename getAll to findAll, remove published argument

This commit is contained in:
Oliver Davies 2021-02-10 02:35:10 +00:00
parent afc0a0e448
commit abe0f3d93b
3 changed files with 8 additions and 12 deletions

View file

@ -25,7 +25,7 @@ final class TalkDateUpdater {
}
public function __invoke(): void {
foreach ($this->talkRepository->getAll() as $talk) {
foreach ($this->talkRepository->findAll() as $talk) {
$this->updateNextEventDate($talk);
}
}