new ProjectConstraint to add dynamic project validation (#2747)

This commit is contained in:
pkaltenboeck
2021-11-14 16:56:52 +01:00
committed by GitHub
parent a483184372
commit dce0578a2b
4 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?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 Symfony\Component\Validator\Constraint;
/**
* Extend this class if you want to add dynamic project validation (eg. via a bundle).
*/
abstract class ProjectConstraint extends Constraint
{
}