We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43b7372 commit a5d4aeaCopy full SHA for a5d4aea
1 file changed
docs/2 - authentication.md
@@ -284,12 +284,10 @@ These filters are already loaded for you by the registrar class located at `src/
284
285
```php
286
public $aliases = [
287
- 'csrf' => CSRF::class,
288
- 'toolbar' => DebugToolbar::class,
289
- 'honeypot' => Honeypot::class,
290
- 'session' => CodeIgniter\Shield\Filters\SessionAuth::class,
291
- 'tokens' => CodeIgniter\Shield\Filters\TokenAuth::class,
292
- 'chain' => CodeIgniter\Shield\Filters\ChainAuth::class,
+ // ...
+ 'session' => \CodeIgniter\Shield\Filters\SessionAuth::class,
+ 'tokens' => \CodeIgniter\Shield\Filters\TokenAuth::class,
+ 'chain' => \CodeIgniter\Shield\Filters\ChainAuth::class,
293
];
294
```
295
0 commit comments