public function SubformStateTest::providerGetValuesBroken in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Form/SubformStateTest.php \Drupal\Tests\Core\Form\SubformStateTest::providerGetValuesBroken()
- 10 core/tests/Drupal/Tests/Core/Form/SubformStateTest.php \Drupal\Tests\Core\Form\SubformStateTest::providerGetValuesBroken()
Provides data to self::testGetValuesBroken().
File
- core/
tests/ Drupal/ Tests/ Core/ Form/ SubformStateTest.php, line 111
Class
- SubformStateTest
- @coversDefaultClass \Drupal\Core\Form\SubformState
Namespace
Drupal\Tests\Core\FormCode
public function providerGetValuesBroken() {
$data = [];
$data['exist'] = [
[
'foo',
],
$this->formStateValues['foo'],
];
$data['nested'] = [
[
'dog',
'name',
],
'Dodger',
];
return $data;
}