42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Validator\Constraints;
|
|
|
|
use App\Entity\Team as TeamEntity;
|
|
use Symfony\Component\Validator\Constraint;
|
|
use Symfony\Component\Validator\ConstraintValidator;
|
|
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
|
|
|
|
final class TeamValidator extends ConstraintValidator
|
|
{
|
|
/**
|
|
* @param TeamEntity $value
|
|
* @param Constraint $constraint
|
|
*/
|
|
public function validate(mixed $value, Constraint $constraint): void
|
|
{
|
|
if (!($constraint instanceof Team)) {
|
|
throw new UnexpectedTypeException($constraint, Team::class);
|
|
}
|
|
|
|
if (!\is_object($value) || !($value instanceof TeamEntity)) {
|
|
return;
|
|
}
|
|
|
|
if (!$value->hasTeamleads()) {
|
|
$this->context->buildViolation(Team::getErrorName(Team::MISSING_TEAMLEAD))
|
|
->atPath('members')
|
|
->setTranslationDomain('validators')
|
|
->setCode(Team::MISSING_TEAMLEAD)
|
|
->addViolation();
|
|
}
|
|
}
|
|
}
|