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

14 lines
222 B
PHP

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