You are here

function isNull in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \isNull()

Returns a PHPUnit_Framework_Constraint_IsNull matcher object.

@since Method available since Release 3.3.0

Return value

PHPUnit_Framework_Constraint_IsNull

File

vendor/phpunit/phpunit/src/Framework/Assert/Functions.php, line 2082

Code

function isNull() {
  return call_user_func_array('PHPUnit_Framework_Assert::isNull', func_get_args());
}