blob: 5c4f0f95e2122c48ed9472b6bdaf5af2d6636de3 [file] [log] [blame]
<?php
namespace LdapRecord\Configuration\Validators;
class IntegerValidator extends Validator
{
/**
* The validation exception message.
*
* @var string
*/
protected $message = 'Option [:option] must be an integer.';
/**
* @inheritdoc
*/
public function passes()
{
return is_numeric($this->value);
}
}