Added attachment RequestContactButton & RequestGeoLocationButton

This commit is contained in:
Alex
2025-07-17 19:15:59 +03:00
parent b29b9f1155
commit 028d2591f8
10 changed files with 145 additions and 10 deletions
+2 -1
View File
@@ -74,6 +74,7 @@ final class ClientTest extends TestCase
$this->httpClientMock,
$this->requestFactoryMock,
$this->streamFactoryMock,
self::API_BASE_URL,
self::API_VERSION,
);
}
@@ -84,7 +85,7 @@ final class ClientTest extends TestCase
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('Access token cannot be empty.');
new Client('', $this->httpClientMock, $this->requestFactoryMock, $this->streamFactoryMock);
new Client('', $this->httpClientMock, $this->requestFactoryMock, $this->streamFactoryMock, '', '');
}
#[Test]