mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-21 07:03:49 +00:00
DX: more code style fixes
This commit is contained in:
@@ -111,7 +111,9 @@ final class MembersEditorTest extends TestCase
|
||||
$this->assertCount(1, $notSharing);
|
||||
$this->assertCount(1, $sharings);
|
||||
|
||||
$getPerson = static function (HouseholdMember $m) { return $m->getPerson(); };
|
||||
$getPerson = static function (HouseholdMember $m) {
|
||||
return $m->getPerson();
|
||||
};
|
||||
|
||||
$this->assertContains($person, $notSharing->map($getPerson));
|
||||
}
|
||||
@@ -151,7 +153,9 @@ final class MembersEditorTest extends TestCase
|
||||
$this->assertCount(1, $notSharing);
|
||||
$this->assertCount(0, $sharings);
|
||||
|
||||
$getPerson = static function (HouseholdMember $m) { return $m->getPerson(); };
|
||||
$getPerson = static function (HouseholdMember $m) {
|
||||
return $m->getPerson();
|
||||
};
|
||||
|
||||
$this->assertContains($person, $notSharing->map($getPerson));
|
||||
}
|
||||
|
Reference in New Issue
Block a user