You are here

function isType in Zircon Profile 8

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

Returns a PHPUnit_Framework_Constraint_IsType matcher object.

@since Method available since Release 3.0.0

Parameters

string $type:

Return value

PHPUnit_Framework_Constraint_IsType

File

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

Code

function isType($type) {
  return call_user_func_array('PHPUnit_Framework_Assert::isType', func_get_args());
}