11 lines
162 B
PHP
11 lines
162 B
PHP
<?php
|
|
/**
|
|
* Interface for constraints.
|
|
*
|
|
* @author James Pepin <james@jamespepin.com>
|
|
*/
|
|
interface Horde_Constraint
|
|
{
|
|
public function evaluate($value);
|
|
}
|