Move TaskValidator class
This commit is contained in:
parent
f7e8bb8fa8
commit
4f38bf4c68
|
|
@ -63,7 +63,6 @@ class ClassProvider implements ServiceProviderInterface
|
|||
'TaskPermission',
|
||||
'TaskPosition',
|
||||
'TaskStatus',
|
||||
'TaskValidator',
|
||||
'TaskImport',
|
||||
'TaskMetadata',
|
||||
'Transition',
|
||||
|
|
@ -87,6 +86,7 @@ class ClassProvider implements ServiceProviderInterface
|
|||
),
|
||||
'Validator' => array(
|
||||
'PasswordResetValidator',
|
||||
'TaskValidator',
|
||||
'UserValidator',
|
||||
),
|
||||
'Core' => array(
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
<?php
|
||||
|
||||
namespace Kanboard\Model;
|
||||
namespace Kanboard\Validator;
|
||||
|
||||
use SimpleValidator\Validator;
|
||||
use SimpleValidator\Validators;
|
||||
|
||||
/**
|
||||
* Task validator model
|
||||
* Task Validator
|
||||
*
|
||||
* @package model
|
||||
* @package validator
|
||||
* @author Frederic Guillot
|
||||
*/
|
||||
class TaskValidator extends Base
|
||||
Loading…
Reference in New Issue