Skip to content

Commit 759b052

Browse files
committed
Merge branch 'main' of github.com:pschilly/dcs-server-bot-api
2 parents 8020845 + 41660f9 commit 759b052

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-dcs-server-bot-api` will be documented in this file.
44

5+
## 0.2.8 - 2025-08-23
6+
7+
**Full Changelog**: https://github.com/pschilly/dcs-server-bot-api/compare/v0.2.7...v0.2.8
8+
59
## 0.2.7 - 2025-08-21
610

711
**Full Changelog**: https://github.com/pschilly/dcs-server-bot-api/compare/v0.2.5...v0.2.7

src/Commands/DcsServerBotApiCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function handle(): int
2121

2222
// Normalize the API URL
2323
if (! preg_match('/^https?:\/\//', $apiUrl)) {
24-
$apiUrl = 'http://' . $apiUrl;
24+
$apiUrl = 'http://'.$apiUrl;
2525
}
2626
// Add default port if not present
2727
$parsed = parse_url($apiUrl);

src/DcsServerBotApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
class DcsServerBotApi
88
{
99
protected static string $baseUrl;
10+
1011
protected static string $apiKey;
1112

1213
public function __construct(?string $baseUrl = null, ?string $apiKey = null)
@@ -61,7 +62,6 @@ protected static function apiCall(): \Illuminate\Http\Client\PendingRequest
6162
}
6263
}
6364

64-
6565
/*
6666
|--------------------------------------------------------------------------
6767
| DCS Bot API Endpoints

0 commit comments

Comments
 (0)