refactor(meetup): rename classes

This commit is contained in:
Oliver Davies 2022-01-14 00:49:08 +00:00
parent 858dde2dc2
commit bb14c14b32
3 changed files with 3 additions and 3 deletions

View file

@ -26,5 +26,5 @@ services:
# add more service definitions when explicit configuration is needed
# please note that last definitions always *replace* previous ones
App\EventRepository:
class: App\Meetup\MeetupEventRepository
class: App\Meetup\MeetupApiEventRepository
public: true

View file

@ -6,7 +6,7 @@ use App\EventRepository;
use Illuminate\Support\Collection;
use Symfony\Contracts\HttpClient\HttpClientInterface;
final class MeetupEventRepository implements EventRepository
final class MeetupApiEventRepository implements EventRepository
{
private HttpClientInterface $client;

View file

@ -9,7 +9,7 @@ use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
/**
* @group api
*/
final class MeetupEventRepositoryTest extends KernelTestCase
final class MeetupApiEventRepositoryTest extends KernelTestCase
{
use EventRepositoryContractTest;