function Inspector::assertAllStrings
Same name in other branches
- 9 core/lib/Drupal/Component/Assertion/Inspector.php \Drupal\Component\Assertion\Inspector::assertAllStrings()
- 8.9.x core/lib/Drupal/Component/Assertion/Inspector.php \Drupal\Component\Assertion\Inspector::assertAllStrings()
- 11.x core/lib/Drupal/Component/Assertion/Inspector.php \Drupal\Component\Assertion\Inspector::assertAllStrings()
Asserts that all members are strings.
Use this only if it is vital that the members not be objects, otherwise test with ::assertAllStringable().
Parameters
mixed $traversable: Variable to be examined.
Return value
bool TRUE if $traversable can be traversed and all members are strings.
24 calls to Inspector::assertAllStrings()
- ApcuBackend::set in core/
lib/ Drupal/ Core/ Cache/ ApcuBackend.php - Stores data in the persistent cache.
- Cache::mergeTags in core/
lib/ Drupal/ Core/ Cache/ Cache.php - Merges arrays of cache tags and removes duplicates.
- CacheCollector::__construct in core/
lib/ Drupal/ Core/ Cache/ CacheCollector.php - Constructs a CacheCollector object.
- CacheTagsInvalidator::invalidateTags in core/
lib/ Drupal/ Core/ Cache/ CacheTagsInvalidator.php - CKEditor4To5UpgradePluginManager::validateAndBuildMaps in core/
modules/ ckeditor5/ src/ Plugin/ CKEditor4To5UpgradePluginManager.php - Validates plugin definitions: avoids conflicts. Builds maps for later use.
File
-
core/
lib/ Drupal/ Component/ Assertion/ Inspector.php, line 83
Class
Namespace
Drupal\Component\AssertionCode
public static function assertAllStrings($traversable) {
return static::assertAll('is_string', $traversable);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.