public static function ProcessForm::create in Module Builder 8.3
Instantiates a new instance of this class.
This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.
Overrides FormBase::create
1 method overrides ProcessForm::create()
- ProcessTestSamplesForm::create in module_builder_devel/
src/ Form/ ProcessTestSamplesForm.php - Instantiates a new instance of this class.
File
- src/
Form/ ProcessForm.php, line 40
Class
- ProcessForm
- Form for running the DCB analysis process.
Namespace
Drupal\module_builder\FormCode
public static function create(ContainerInterface $container) {
// Note that we can't inject the DCB tasks because they throw sanity
// exceptions.
return new static($container
->get('module_builder.drupal_code_builder'), $container
->get('messenger'));
}