class FormStateValuesTraitStub
Same name and namespace in other branches
- 11.x core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php \Drupal\Tests\Core\Form\FormStateValuesTraitStub
Hierarchy
- class \Drupal\Tests\Core\Form\FormStateValuesTraitStub uses \Drupal\Core\Form\FormStateValuesTrait
Expanded class hierarchy of FormStateValuesTraitStub
File
-
core/
tests/ Drupal/ Tests/ Core/ Form/ FormStateValuesTraitTest.php, line 245
Namespace
Drupal\Tests\Core\FormView source
class FormStateValuesTraitStub {
use FormStateValuesTrait;
/**
* The submitted form values.
*
* @var mixed[]
*/
protected $values = [];
/**
* {@inheritdoc}
*/
public function &getValues() {
return $this->values;
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.