refactor(meetup): rename classes
This commit is contained in:
parent
858dde2dc2
commit
bb14c14b32
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
@ -9,7 +9,7 @@ use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
|
|||
/**
|
||||
* @group api
|
||||
*/
|
||||
final class MeetupEventRepositoryTest extends KernelTestCase
|
||||
final class MeetupApiEventRepositoryTest extends KernelTestCase
|
||||
{
|
||||
use EventRepositoryContractTest;
|
||||
|
Loading…
Reference in a new issue