* * 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; class NotEmptyException extends ValidationException { const STANDARD = 0; const NAMED = 1; public static $defaultTemplates = [ self::MODE_DEFAULT => [ self::STANDARD => 'The value must not be empty', self::NAMED => '{{name}} must not be empty', ], self::MODE_NEGATIVE => [ self::STANDARD => 'The value must be empty', self::NAMED => '{{name}} must be empty', ], ]; public function chooseTemplate() { return $this->hasName() ? static::NAMED : static::STANDARD; } }