public function ArrayConfigTest::testMergableMixedArray in Little helpers 7.2
Test that mixed arrays are mergable.
File
- tests/
ArrayConfigTest.php, line 70
Class
- ArrayConfigTest
- Unit-tests for the array config helper class.
Namespace
Drupal\little_helpersCode
public function testMergableMixedArray() {
$this
->assertTrue(ArrayConfig::isMergable([
'a',
'b' => 'foo',
[],
]));
}