Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit a752fb9

Browse files
authored
formatting
1 parent 70ffe41 commit a752fb9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Statistics/Logger/HttpStatisticsLogger.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ protected function getUrl(): string
6969
{
7070
$action = [WebSocketStatisticsEntriesController::class, 'store'];
7171

72-
$url_override = config('websockets.statistics.base_url_override', null);
72+
$overridenUrl = config('websockets.statistics.base_url_override');
7373

74-
if ($url_override !== null) {
75-
return $url_override.action($action, [], false);
74+
if ($overridenUrl) {
75+
return $overridenUrl.action($action, [], false);
7676
}
7777

7878
return action($action);

0 commit comments

Comments
 (0)