Skip to content

Commit

Permalink
Remove App\Controller references
Browse files Browse the repository at this point in the history
  • Loading branch information
MKodde committed Jan 23, 2024
1 parent d103ccc commit 57b6b19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/packages/framework.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ framework:
csrf_protection: true
handle_all_throwables: true
http_method_override: true
error_controller: App\Controller\ExceptionController::show
error_controller: Surfnet\Tiqr\Controller\ExceptionController::show

# Enables session support. Note that the session will ONLY be started if you read or write from it.
# Remove or comment this section to explicitly disable session support.
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/AuthenticationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ private function showUserIsBlockedErrorPage(bool $isBlockedPermanently): Respons
}
// Forward to the exception controller to prevent an error being logged.
return $this->forward(
'App\Controller\ExceptionController::show',
'Surfnet\Tiqr\Controller\ExceptionController::show',
[
'exception' => $exception,
]
Expand Down

0 comments on commit 57b6b19

Please sign in to comment.