mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
38 lines
909 B
PHP
38 lines
909 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Chill\MainBundle\Workflow\Validator;
|
|
|
|
/**
|
|
* Validator which will test that:.
|
|
*
|
|
* * a handler exists;
|
|
* * a related entity does exists;
|
|
* * a workflow can be associated with this entity.
|
|
*/
|
|
#[\Attribute(\Attribute::TARGET_CLASS)]
|
|
class EntityWorkflowCreation extends \Symfony\Component\Validator\Constraint
|
|
{
|
|
public string $messageEntityNotFound = 'Related entity is not found';
|
|
|
|
public string $messageHandlerNotFound = 'Handler not found for this entity';
|
|
|
|
public string $messageWorkflowNotAvailable = 'Workflow is not valid';
|
|
|
|
/**
|
|
* @return array<string>
|
|
*/
|
|
public function getTargets(): array
|
|
{
|
|
return [self::CLASS_CONSTRAINT];
|
|
}
|
|
}
|