We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a4a27b commit 247390fCopy full SHA for 247390f
src/Config/firewall.php
@@ -19,7 +19,7 @@
19
'redirect' => env('FIREWALL_BLOCK_REDIRECT', null),
20
'abort' => env('FIREWALL_BLOCK_ABORT', false),
21
'code' => env('FIREWALL_BLOCK_CODE', 403),
22
- 'exception' => \Akaunting\Firewall\Exceptions\FirewallBlockedException::class,
+ 'exception' => \Akaunting\Firewall\Exceptions\AccessDenied::class,
23
],
24
25
src/Exceptions/FirewallBlockedException.php renamed to src/Exceptions/AccessDenied.php
@@ -4,7 +4,7 @@
4
5
use Exception;
6
7
-class FirewallBlockedException extends Exception
+class AccessDenied extends Exception
8
{
9
// Empty implementation as a stub for your own exception
10
}
0 commit comments