function Inspector::assertAllStrictArrays

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Component/Assertion/Inspector.php \Drupal\Component\Assertion\Inspector::assertAllStrictArrays()
  2. 10 core/lib/Drupal/Component/Assertion/Inspector.php \Drupal\Component\Assertion\Inspector::assertAllStrictArrays()
  3. 11.x core/lib/Drupal/Component/Assertion/Inspector.php \Drupal\Component\Assertion\Inspector::assertAllStrictArrays()

Asserts all members are strict arrays.

Parameters

mixed $traversable: Variable to be examined.

Return value

bool TRUE if $traversable can be traversed and all members are strict arrays.

See also

::assertStrictArray

1 call to Inspector::assertAllStrictArrays()
InspectorTest::testAssertAllStrictArrays in core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php
Tests asserting all members are strict arrays.

File

core/lib/Drupal/Component/Assertion/Inspector.php, line 174

Class

Inspector
Generic inspections for the <a href="http://php.net/assert" target="_blank" class="php-manual" title="void assert(string $assertion [, string $description = &#039;&#039;, string $file, int $line]) Checks an assertion">assert</a>() statement.

Namespace

Drupal\Component\Assertion

Code

public static function assertAllStrictArrays($traversable) {
    return static::assertAll([
        __CLASS__,
        'assertStrictArray',
    ], $traversable);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.