mirror of
https://github.com/silverstripe/silverstripe-spamprotection.git
synced 2024-10-22 14:05:59 +02:00
FIX incorrect instruction
This commit is contained in:
parent
f69ee07ec0
commit
369e545133
@ -142,11 +142,10 @@ following pattern:
|
|||||||
|
|
||||||
```php
|
```php
|
||||||
use SilverStripe\Forms\Form;
|
use SilverStripe\Forms\Form;
|
||||||
use SilverStripe\SpamProtection\Extension\FormSpamProtectionExtension;
|
|
||||||
|
|
||||||
$form = new Form(/* .. */);
|
$form = new Form(/* .. */);
|
||||||
|
|
||||||
if ($form->hasExtension(FormSpamProtectionExtension::class)) {
|
if ($form->hasExtension('SilverStripe\SpamProtection\Extension\FormSpamProtectionExtension')) {
|
||||||
$form->enableSpamProtection();
|
$form->enableSpamProtection();
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user