Changed all public setUp methods in tests to be protected

This commit is contained in:
Alejandro Celaya
2022-09-11 12:02:49 +02:00
parent c841e57db5
commit 997289da02
72 changed files with 72 additions and 72 deletions

View File

@@ -25,7 +25,7 @@ class ApiKeyServiceTest extends TestCase
private ApiKeyService $service;
private ObjectProphecy $em;
public function setUp(): void
protected function setUp(): void
{
$this->em = $this->prophesize(EntityManager::class);
$this->service = new ApiKeyService($this->em->reveal());