Filters
You can register your custom filter(s) like below example.
1return [
2 // ...
3 'filters' => [
4 // ...
5 'your_custom_key' => YourCustomFilter::class
6 ]
7];
If you want more information about filters, see this.
You can register your custom filter(s) like below example.
1return [
2 // ...
3 'filters' => [
4 // ...
5 'your_custom_key' => YourCustomFilter::class
6 ]
7];