From 8d651b76e65dcefb89a0e82520ba84792169503e Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Tue, 9 Apr 2024 20:54:13 +0000 Subject: [PATCH] Apply fixes from StyleCI --- app/Client/Http/Controllers/DashboardController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Client/Http/Controllers/DashboardController.php b/app/Client/Http/Controllers/DashboardController.php index cfe3982..a961047 100644 --- a/app/Client/Http/Controllers/DashboardController.php +++ b/app/Client/Http/Controllers/DashboardController.php @@ -14,7 +14,7 @@ public function handle(Request $request, ConnectionInterface $httpConnection) $httpConnection->send(respond_html($this->getView($httpConnection, 'client.dashboard', [ 'user' => Client::$user, 'subdomains' => Client::$subdomains, - 'max_logs'=> config()->get('expose.max_logged_requests', 10), + 'max_logs' => config()->get('expose.max_logged_requests', 10), ]))); } }