2010-04-26 19:56:01 +00:00
|
|
|
<?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;
|
|
|
|
|
2010-04-26 19:56:01 +00:00
|
|
|
interface iValidator
|
|
|
|
{
|
|
|
|
public function isValid($value, $context = null);
|
|
|
|
public function getMessage();
|
|
|
|
}
|