function FormStateTest::providerTestIsCached
Provides test data for testIsCached().
File
- 
              core/tests/ Drupal/ Tests/ Core/ Form/ FormStateTest.php, line 267 
Class
- FormStateTest
- @coversDefaultClass \Drupal\Core\Form\FormState[[api-linebreak]]
Namespace
Drupal\Tests\Core\FormCode
public static function providerTestIsCached() {
  $data = [];
  $data[] = [
    TRUE,
    TRUE,
    FALSE,
  ];
  $data[] = [
    FALSE,
    TRUE,
    FALSE,
  ];
  $data[] = [
    FALSE,
    FALSE,
    FALSE,
  ];
  $data[] = [
    TRUE,
    FALSE,
    TRUE,
  ];
  $data[] = [
    TRUE,
    NULL,
    TRUE,
  ];
  $data[] = [
    FALSE,
    NULL,
    FALSE,
  ];
  return $data;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
