You are here

function stringEndsWith in Zircon Profile 8

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

Returns a PHPUnit_Framework_Constraint_StringEndsWith matcher object.

@since Method available since Release 3.4.0

Parameters

mixed $suffix:

Return value

PHPUnit_Framework_Constraint_StringEndsWith

File

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

Code

function stringEndsWith($suffix) {
  return call_user_func_array('PHPUnit_Framework_Assert::stringEndsWith', func_get_args());
}