public static function CaptchaPointForm::create in CAPTCHA 8
Create Captcha Points.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: Event to create Captcha points.
Return value
static
Overrides FormBase::create
File
- src/
Form/ CaptchaPointForm.php, line 51
Class
- CaptchaPointForm
- Entity Form to edit CAPTCHA points.
Namespace
Drupal\captcha\FormCode
public static function create(ContainerInterface $container) {
return new static($container
->get('request_stack'), $container
->get('captcha.helper'));
}