public function SubformStateTest::providerTestGetValueBroken in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Form/SubformStateTest.php \Drupal\Tests\Core\Form\SubformStateTest::providerTestGetValueBroken()
Provides data to self::testGetValueBroken().
File
- core/
tests/ Drupal/ Tests/ Core/ Form/ SubformStateTest.php, line 172
Class
- SubformStateTest
- @coversDefaultClass \Drupal\Core\Form\SubformState
Namespace
Drupal\Tests\Core\FormCode
public function providerTestGetValueBroken() {
$data = [];
$data['nested'] = [
[
'dog',
'name',
],
NULL,
'Dodger',
];
return $data;
}