function FormStateDecoratorBaseTest::providerIsMethodType
Provides data to self::testIsMethodType().
File
-
core/
tests/ Drupal/ Tests/ Core/ Form/ FormStateDecoratorBaseTest.php, line 354
Class
Namespace
Drupal\Tests\Core\FormCode
public static function providerIsMethodType() {
return [
[
TRUE,
'GET',
],
[
TRUE,
'POST',
],
[
FALSE,
'GET',
],
[
FALSE,
'POST',
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.