mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-30 02:25:00 +00:00
DX: apply rector rules up to php8.0
This commit is contained in:
@@ -110,10 +110,8 @@ final class HouseholdMemberControllerTest extends WebTestCase
|
||||
|
||||
/**
|
||||
* @dataProvider provideValidDataEditMember
|
||||
*
|
||||
* @param mixed $memberId
|
||||
*/
|
||||
public function testEditMember($memberId)
|
||||
public function testEditMember(mixed $memberId)
|
||||
{
|
||||
$client = $this->getClientAuthenticated();
|
||||
|
||||
@@ -134,12 +132,8 @@ final class HouseholdMemberControllerTest extends WebTestCase
|
||||
|
||||
/**
|
||||
* @dataProvider provideValidDataMove
|
||||
*
|
||||
* @param mixed $personId
|
||||
* @param mixed $householdId
|
||||
* @param mixed $positionId
|
||||
*/
|
||||
public function testLeaveWithoutHousehold($personId, $householdId, $positionId, DateTimeInterface $date)
|
||||
public function testLeaveWithoutHousehold(mixed $personId, mixed $householdId, mixed $positionId, DateTimeInterface $date)
|
||||
{
|
||||
$client = $this->getClientAuthenticated();
|
||||
|
||||
@@ -186,12 +180,8 @@ final class HouseholdMemberControllerTest extends WebTestCase
|
||||
|
||||
/**
|
||||
* @dataProvider provideValidDataMove
|
||||
*
|
||||
* @param mixed $personId
|
||||
* @param mixed $householdId
|
||||
* @param mixed $positionId
|
||||
*/
|
||||
public function testMoveMember($personId, $householdId, $positionId, DateTimeInterface $date)
|
||||
public function testMoveMember(mixed $personId, mixed $householdId, mixed $positionId, DateTimeInterface $date)
|
||||
{
|
||||
$client = $this->getClientAuthenticated();
|
||||
|
||||
@@ -237,12 +227,8 @@ final class HouseholdMemberControllerTest extends WebTestCase
|
||||
|
||||
/**
|
||||
* @dataProvider provideValidDataMove
|
||||
*
|
||||
* @param mixed $personId
|
||||
* @param mixed $householdId
|
||||
* @param mixed $positionId
|
||||
*/
|
||||
public function testMoveMemberToNewHousehold($personId, $householdId, $positionId, DateTimeInterface $date)
|
||||
public function testMoveMemberToNewHousehold(mixed $personId, mixed $householdId, mixed $positionId, DateTimeInterface $date)
|
||||
{
|
||||
$client = $this->getClientAuthenticated();
|
||||
|
||||
|
Reference in New Issue
Block a user