php cs fixes after updating php cs fixer

This commit is contained in:
2024-01-10 10:31:25 +01:00
parent 60ede58af0
commit 3c8e59e088
682 changed files with 2097 additions and 882 deletions

View File

@@ -23,7 +23,9 @@ use Symfony\Component\Validator\Exception\UnexpectedValueException;
class AccompanyingPeriodValidityValidator extends ConstraintValidator
{
public function __construct(private readonly ActivityRepository $activityRepository, private readonly SocialIssueRender $socialIssueRender, private readonly TokenStorageInterface $token) {}
public function __construct(private readonly ActivityRepository $activityRepository, private readonly SocialIssueRender $socialIssueRender, private readonly TokenStorageInterface $token)
{
}
public function validate($period, Constraint $constraint)
{

View File

@@ -20,7 +20,9 @@ use Symfony\Component\Validator\Exception\UnexpectedValueException;
class LocationValidityValidator extends ConstraintValidator
{
public function __construct(private readonly PersonRenderInterface $render) {}
public function __construct(private readonly PersonRenderInterface $render)
{
}
public function validate($period, Constraint $constraint)
{

View File

@@ -24,7 +24,9 @@ class ParticipationOverlapValidator extends ConstraintValidator
{
private const MAX_PARTICIPATION = 1;
public function __construct(private readonly PersonRenderInterface $personRender, private readonly ThirdPartyRender $thirdpartyRender) {}
public function __construct(private readonly PersonRenderInterface $personRender, private readonly ThirdPartyRender $thirdpartyRender)
{
}
public function validate($participations, Constraint $constraint)
{

View File

@@ -21,7 +21,9 @@ use Symfony\Component\Validator\ConstraintValidator;
class ResourceDuplicateCheckValidator extends ConstraintValidator
{
public function __construct(private readonly PersonRenderInterface $personRender, private readonly ThirdPartyRender $thirdpartyRender) {}
public function __construct(private readonly PersonRenderInterface $personRender, private readonly ThirdPartyRender $thirdpartyRender)
{
}
public function validate($resources, Constraint $constraint)
{

View File

@@ -24,7 +24,9 @@ use Symfony\Component\Validator\Exception\UnexpectedTypeException;
*/
class HouseholdMembershipSequentialValidator extends ConstraintValidator
{
public function __construct(private readonly PersonRenderInterface $render) {}
public function __construct(private readonly PersonRenderInterface $render)
{
}
public function validate($person, Constraint $constraint)
{

View File

@@ -20,7 +20,9 @@ use Symfony\Component\Validator\Exception\UnexpectedValueException;
class RelationshipNoDuplicateValidator extends ConstraintValidator
{
public function __construct(private readonly RelationshipRepository $relationshipRepository) {}
public function __construct(private readonly RelationshipRepository $relationshipRepository)
{
}
public function validate($value, Constraint $constraint)
{