1
0
Fork 0
mirror of synced 2024-06-03 03:14:50 +12:00
appwrite/src/Appwrite/Task/Validator/Cron.php
Steven Boixel acb4aebe4d Fix - PSR issues in the Task library
This fix the PSR issue for the Cron Class and also the CronTest

Resolve #1981
2021-10-06 13:53:33 +02:00

68 lines
1.1 KiB
PHP

<?php
namespace Appwrite\Task\Validator;
use Cron\CronExpression;
use Utopia\Validator;
class Cron extends Validator
{
/**
* Get Description.
*
* Returns validator description.
*
* @return string
*/
public function getDescription(): string
{
return 'String must be a valid cron expression';
}
/**
* Is valid.
*
* Returns true if valid or false if not.
*
* @param mixed $value
*
* @return bool
*/
public function isValid($value): bool
{
if (empty($value)) {
return true;
}
if (!CronExpression::isValidExpression($value)) {
return false;
}
return true;
}
/**
* Is array.
*
* Function will return true if object is array.
*
* @return bool
*/
public function isArray(): bool
{
return false;
}
/**
* Get Type.
*
* Returns validator type.
*
* @return string
*/
public function getType(): string
{
return self::TYPE_STRING;
}
}