You are here

function logicalNot in Zircon Profile 8

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

Returns a PHPUnit_Framework_Constraint_Not matcher object.

@since Method available since Release 3.0.0

Parameters

PHPUnit_Framework_Constraint $constraint:

Return value

PHPUnit_Framework_Constraint_Not

File

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

Code

function logicalNot(PHPUnit_Framework_Constraint $constraint) {
  return call_user_func_array('PHPUnit_Framework_Assert::logicalNot', func_get_args());
}