StubFormSubmitter.php

Namespace

Drupal\Tests\Core\Form

File

core/tests/Drupal/Tests/Core/Form/StubFormSubmitter.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Core\Form;

use Drupal\Core\Form\FormSubmitter;

/**
 * Provides a stub FormSubmitter that doesn't depend on batch_get().
 */
class StubFormSubmitter extends FormSubmitter {
  protected function &batchGet() : array {
    $batch = [];
    return $batch;
  }

}

Classes

Title Deprecated Summary
StubFormSubmitter Provides a stub FormSubmitter that doesn't depend on batch_get().

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.