Skip to content

Commit 247390f

Browse files
committed
formatting
1 parent 7a4a27b commit 247390f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Config/firewall.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'redirect' => env('FIREWALL_BLOCK_REDIRECT', null),
2020
'abort' => env('FIREWALL_BLOCK_ABORT', false),
2121
'code' => env('FIREWALL_BLOCK_CODE', 403),
22-
'exception' => \Akaunting\Firewall\Exceptions\FirewallBlockedException::class,
22+
'exception' => \Akaunting\Firewall\Exceptions\AccessDenied::class,
2323
],
2424

2525
],

src/Exceptions/FirewallBlockedException.php renamed to src/Exceptions/AccessDenied.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use Exception;
66

7-
class FirewallBlockedException extends Exception
7+
class AccessDenied extends Exception
88
{
99
// Empty implementation as a stub for your own exception
1010
}

0 commit comments

Comments
 (0)