Files
kimai2/src/Validator/Constraints/TimesheetConstraint.php
2020-07-02 18:54:17 +02:00

20 lines
436 B
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 Symfony\Component\Validator\Constraint;
/**
* Extend this class if you want to add dynamic timesheet validation (eg. via a bundle).
*/
abstract class TimesheetConstraint extends Constraint
{
}