Files
majestic/validator/iValidator.php

16 lines
294 B
PHP
Raw Normal View History

<?php
/**
* @copyright NetMonsters <team@netmonsters.ru>
* @link http://netmonsters.ru
* @package Majestic
* @subpackage validator
* @since 2010-04-25
*/
2014-05-27 17:56:46 +04:00
namespace Majestic;
interface iValidator
{
public function isValid($value, $context = null);
public function getMessage();
}