meetup-raffle-winner-picker/tests/FakeEventRepository.php

27 lines
809 B
PHP
Raw Normal View History

2022-01-13 20:13:28 +00:00
<?php
declare(strict_types=1);
namespace App\Tests;
use App\EventRepository;
2022-01-13 20:54:29 +00:00
use App\RsvpResponse;
use Tightenco\Collect\Support\Collection;
2022-01-13 20:13:28 +00:00
final class FakeEventRepository implements EventRepository
{
private static array $rsvps = [
2022-01-13 20:54:29 +00:00
['name' => 'matthew s.', 'response' => RsvpResponse::RESPONSE_YES],
['name' => 'Michael P.', 'response' => RsvpResponse::RESPONSE_YES],
['name' => 'Kathryn "Kat" R.', 'response' => RsvpResponse::RESPONSE_YES],
['name' => 'Did not attend', 'response' => RsvpResponse::RESPONSE_NO],
];
public function getConfirmedAttendees(): Collection {
return Collection::make(self::$rsvps)
2022-01-13 20:54:29 +00:00
->filter(fn (array $attendee): bool => $attendee['response']
== RsvpResponse::RESPONSE_YES)
;
2022-01-13 20:13:28 +00:00
}
}