respect-validation/library/Exceptions/VideoUrlException.php
Henrique Moody cb24cc97d2
Apply "SlevomatCodingStandard.Classes.DisallowLateStaticBindingForConstants"
Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2019-02-09 14:12:05 +01:00

50 lines
1.2 KiB
PHP

<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Respect\Validation\Exceptions;
/**
* @author Danilo Correa <danilosilva87@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
* @author Ricardo Gobbo <ricardo@clicknow.com.br>
*/
final class VideoUrlException extends ValidationException
{
public const SERVICE = 'service';
/**
* {@inheritdoc}
*/
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be a valid video URL',
self::SERVICE => '{{name}} must be a valid {{service}} video URL',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be a valid video URL',
self::SERVICE => '{{name}} must not be a valid {{service}} video URL',
],
];
/**
* {@inheritdoc}
*/
protected function chooseTemplate(): string
{
if ($this->getParam('service')) {
return self::SERVICE;
}
return self::STANDARD;
}
}