diff --git a/src/Command/PickWinnerCommand.php b/src/Command/PickWinnerCommand.php index 3005212..b35ec7d 100644 --- a/src/Command/PickWinnerCommand.php +++ b/src/Command/PickWinnerCommand.php @@ -126,6 +126,7 @@ class PickWinnerCommand extends Command */ private function eventComments(\stdClass $event): Collection { + // TODO: Cache this. $response = $this->client->get( $event->comments_uri, ['query' => ['resultsperpage' => 1000]]) @@ -144,6 +145,7 @@ class PickWinnerCommand extends Command */ private function talkComments(\stdClass $event): Collection { + // TODO: Cache this. $response = $this->client->get( $event->all_talk_comments_uri, ['query' => ['resultsperpage' => 1000]]