mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-30 11:33:49 +00:00
fix: Fix return types in tests.
This commit is contained in:
@@ -44,7 +44,7 @@ final class ParticipationControllerTest extends WebTestCase
|
||||
*/
|
||||
private $personsIdsCache = [];
|
||||
|
||||
public function setUp(): void
|
||||
protected function setUp(): void
|
||||
{
|
||||
self::bootKernel();
|
||||
|
||||
|
@@ -68,7 +68,7 @@ final class EventSearchTest extends WebTestCase
|
||||
*/
|
||||
protected $prophet;
|
||||
|
||||
public function setUp(): void
|
||||
protected function setUp(): void
|
||||
{
|
||||
self::bootKernel();
|
||||
/** @var \Symfony\Component\HttpKernel\KernelInterface $kernel */
|
||||
@@ -96,7 +96,7 @@ final class EventSearchTest extends WebTestCase
|
||||
$this->createEvents();
|
||||
}
|
||||
|
||||
public function tearDown()
|
||||
protected function tearDown(): void
|
||||
{
|
||||
foreach ($this->events as $event) {
|
||||
$this->entityManager->createQuery('DELETE FROM ChillEventBundle:Event e WHERE e.id = :event_id')
|
||||
|
Reference in New Issue
Block a user