WebformSubmissionDevelGenerateDeprecated.php in Webform 6.x
Same filename and directory in other branches
Namespace
Drupal\webform\Plugin\DevelGenerateFile
src/Plugin/DevelGenerate/WebformSubmissionDevelGenerateDeprecated.phpView source
<?php
namespace Drupal\webform\Plugin\DevelGenerate;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\devel_generate\DevelGenerateBase;
/**
* Provides a WebformSubmissionDevelGenerate deprecated plugin.
*
* Use deprecated generator because the devel_generate.module changed the
* DevelGenerateBaseInterface.
*
* @see https://www.drupal.org/project/webform/issues/3155654
* @see https://gitlab.com/drupalspoons/devel/-/issues/324
*/
class WebformSubmissionDevelGenerateDeprecated extends DevelGenerateBase implements ContainerFactoryPluginInterface {
use WebformSubmissionDevelGenerateTrait;
/**
* {@inheritdoc}
*/
public function validateDrushParams($args) {
return $this
->_validateDrushParams($args);
}
}
Classes
Name | Description |
---|---|
WebformSubmissionDevelGenerateDeprecated | Provides a WebformSubmissionDevelGenerate deprecated plugin. |