9 lines
330 B
PHP
9 lines
330 B
PHP
<?php
|
|
namespace MailPoetVendor\Symfony\Component\Validator\Constraints;
|
|
if (!defined('ABSPATH')) exit;
|
|
#[\Attribute(\Attribute::TARGET_PROPERTY | \Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]
|
|
class Positive extends GreaterThan
|
|
{
|
|
use ZeroComparisonConstraintTrait;
|
|
public $message = 'This value should be positive.';
|
|
}
|