Skip to content

Commit 88c2817

Browse files
authored
chore: change api url to api.lexware.io (#168)
1 parent e203f40 commit 88c2817

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Api.php

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

3636
class Api implements ApiInterface
3737
{
38-
public string $apiUrl = 'https://api.lexoffice.io';
38+
public string $apiUrl = 'https://api.lexware.io';
3939

4040
protected string $apiVersion = 'v1';
4141

tests/ApiTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function testApiUrl(): void
6969
new Response(200, [], 'post-content')
7070
);
7171

72-
$this->assertStringStartsWith('api.lexoffice.io', $stub->getRequest()->getUri()->getHost());
72+
$this->assertStringStartsWith('api.lexware.io', $stub->getRequest()->getUri()->getHost());
7373

7474
$stub->apiUrl = 'https://test.de';
7575
$stub->newRequest('POST', 'post-content');

0 commit comments

Comments
 (0)