You are here

function classHasStaticAttribute in Zircon Profile 8

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

Returns a PHPUnit_Framework_Constraint_ClassHasStaticAttribute matcher object.

@since Method available since Release 3.1.0

Parameters

string $attributeName:

Return value

PHPUnit_Framework_Constraint_ClassHasStaticAttribute

File

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

Code

function classHasStaticAttribute($attributeName) {
  return call_user_func_array('PHPUnit_Framework_Assert::classHasStaticAttribute', func_get_args());
}