function TextareaTest::providerTestValueCallback
Data provider for testValueCallback().
File
- 
              core/tests/ Drupal/ Tests/ Core/ Render/ Element/ TextareaTest.php, line 29 
Class
- TextareaTest
- @coversDefaultClass \Drupal\Core\Render\Element\Textarea[[api-linebreak]] @group Render
Namespace
Drupal\Tests\Core\Render\ElementCode
public function providerTestValueCallback() {
  $data = [];
  $data[] = [
    NULL,
    FALSE,
  ];
  $data[] = [
    NULL,
    NULL,
  ];
  $data[] = [
    '',
    [
      'test',
    ],
  ];
  $data[] = [
    'test',
    'test',
  ];
  $data[] = [
    '123',
    123,
  ];
  return $data;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
