Files
server/usr/share/psa-pear/pear/php/Horde/Constraint/AlwaysFalse.php
2026-01-07 20:52:11 +01:00

14 lines
225 B
PHP

<?php
/**
* Always returns false
*
* @author James Pepin <james@jamespepin.com>
*/
class Horde_Constraint_AlwaysFalse implements Horde_Constraint
{
public function evaluate($value)
{
return false;
}
}