Skip to content

Commit da1a050

Browse files
committed
Make $baseUrl and $secret required in the static factory.
1 parent d198d6e commit da1a050

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BigBlueButton.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ public static function createWithHttpClient(
154154
ClientInterface $httpClient,
155155
RequestFactoryInterface $requestFactory,
156156
StreamFactoryInterface $streamFactory,
157-
?string $baseUrl = null,
158-
?string $secret = null,
157+
string $baseUrl,
158+
string $secret,
159159
): static {
160160
$instance = new static($baseUrl, $secret);
161161
$instance->httpClient = $httpClient;

0 commit comments

Comments
 (0)