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

16 lines
284 B
PHP

<?php
/**
* Checks if the value is null
*
* Based on PHPUnit_Framework_Constraint_Null
*
* @author James Pepin <james@jamespepin.com>
*/
class Horde_Constraint_Null implements Horde_Constraint
{
public function evaluate($value)
{
return is_null($value);
}
}