You are here

public function WebformSubmissionDevelGenerateDeprecated::validateDrushParams in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/DevelGenerate/WebformSubmissionDevelGenerateDeprecated.php \Drupal\webform\Plugin\DevelGenerate\WebformSubmissionDevelGenerateDeprecated::validateDrushParams()

Responsible for validating Drush params.

Parameters

array $args: The command arguments.

array $options: The commend options.

Return value

array An array of values ready to be used for generateElements().

Overrides DevelGenerateBaseInterface::validateDrushParams

File

src/Plugin/DevelGenerate/WebformSubmissionDevelGenerateDeprecated.php, line 24

Class

WebformSubmissionDevelGenerateDeprecated
Provides a WebformSubmissionDevelGenerate deprecated plugin.

Namespace

Drupal\webform\Plugin\DevelGenerate

Code

public function validateDrushParams($args) {
  return $this
    ->_validateDrushParams($args);
}