Fixed typos

This commit is contained in:
Jan Böhmer 2023-04-15 23:14:53 +02:00
parent 63df16a369
commit d04d743520
144 changed files with 263 additions and 265 deletions

View file

@ -25,7 +25,7 @@ namespace App\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
/**
* Constraints the parent property on StructuralDBElement objects in the way, that neither the object self or any
* Constraints the parent property on StructuralDBElement objects in the way, that neither the object self nor any
* of its children can be assigned.
*
* @Annotation
@ -33,7 +33,7 @@ use Symfony\Component\Validator\Constraint;
class NoneOfItsChildren extends Constraint
{
/**
* @var string The message used if it is tried to assign a object as its own parent
* @var string The message used if it is tried to assign an object as its own parent
*/
public string $self_message = 'validator.noneofitschild.self';
/**