You are here

class FormStateValuesTraitStub in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php \Drupal\Tests\Core\Form\FormStateValuesTraitStub
  2. 10 core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php \Drupal\Tests\Core\Form\FormStateValuesTraitStub

Hierarchy

Expanded class hierarchy of FormStateValuesTraitStub

File

core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php, line 245

Namespace

Drupal\Tests\Core\Form
View source
class FormStateValuesTraitStub {
  use FormStateValuesTrait;

  /**
   * The submitted form values.
   *
   * @var mixed[]
   */
  protected $values = [];

  /**
   * {@inheritdoc}
   */
  public function &getValues() {
    return $this->values;
  }

}

Members