public static function assertAll(callable
$callable,
$traversable) { if (static::
assertTraversable($traversable)) { foreach ($traversable as $member) { if (!
$callable($member)) { return FALSE;
} } return TRUE;
} return FALSE;
} /**
* Asserts that all members are strings.
*
* Use this only if it is vital that the members not be objects, otherwise
* test with ::assertAllStringable().
*
* @param mixed $traversable
* Variable to be examined.
*
* @return bool
* TRUE if $traversable can be traversed and all members are strings.
*/