mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-30 11:33:49 +00:00
DX: apply rector rules up to php8.0
This commit is contained in:
@@ -30,32 +30,8 @@ use function count;
|
||||
|
||||
final class SocialWorkMetadata implements SocialWorkMetadataInterface
|
||||
{
|
||||
private EntityManagerInterface $entityManager;
|
||||
|
||||
private EvaluationRepository $evaluationRepository;
|
||||
|
||||
private GoalRepository $goalRepository;
|
||||
|
||||
private ResultRepository $resultRepository;
|
||||
|
||||
private SocialActionRepository $socialActionRepository;
|
||||
|
||||
private SocialIssueRepository $socialIssueRepository;
|
||||
|
||||
public function __construct(
|
||||
SocialIssueRepository $socialIssueRepository,
|
||||
SocialActionRepository $socialActionRepository,
|
||||
GoalRepository $goalRepository,
|
||||
ResultRepository $resultRepository,
|
||||
EvaluationRepository $evaluationRepository,
|
||||
EntityManagerInterface $entityManager
|
||||
) {
|
||||
$this->socialIssueRepository = $socialIssueRepository;
|
||||
$this->socialActionRepository = $socialActionRepository;
|
||||
$this->goalRepository = $goalRepository;
|
||||
$this->resultRepository = $resultRepository;
|
||||
$this->evaluationRepository = $evaluationRepository;
|
||||
$this->entityManager = $entityManager;
|
||||
public function __construct(private SocialIssueRepository $socialIssueRepository, private SocialActionRepository $socialActionRepository, private GoalRepository $goalRepository, private ResultRepository $resultRepository, private EvaluationRepository $evaluationRepository, private EntityManagerInterface $entityManager)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user