[phpstan fix] Add array return type on all dependency fixture getDependencies methods

This commit is contained in:
Julie Lenaerts 2024-11-28 12:02:48 +01:00
parent d68de96004
commit 11ba2cf889
5 changed files with 5 additions and 5 deletions

View File

@ -38,7 +38,7 @@ class LoadActivityNotifications extends AbstractFixture implements DependentFixt
],
];
public function getDependencies()
public function getDependencies(): array
{
return [
LoadActivity::class,

View File

@ -38,7 +38,7 @@ class LoadAccompanyingPeriodNotifications extends AbstractFixture implements Dep
],
];
public function getDependencies()
public function getDependencies(): array
{
return [
LoadPeople::class,

View File

@ -28,7 +28,7 @@ class LoadAccompanyingPeriodWork extends \Doctrine\Bundle\FixturesBundle\Fixture
public function __construct(private readonly AccompanyingPeriodRepository $periodRepository, private readonly EvaluationRepository $evaluationRepository) {}
public function getDependencies()
public function getDependencies(): array
{
return [
LoadPeople::class,

View File

@ -38,7 +38,7 @@ class LoadHousehold extends Fixture implements DependentFixtureInterface
$this->loader = new NativeLoader();
}
public function getDependencies()
public function getDependencies(): array
{
return [
LoadPeople::class,

View File

@ -32,7 +32,7 @@ class LoadThirdParty extends Fixture implements DependentFixtureInterface
$this->phoneNumberUtil = PhoneNumberUtil::getInstance();
}
public function getDependencies()
public function getDependencies(): array
{
return [
LoadCenters::class,