Skip to content

Commit

Permalink
Update src/BigBlueButton.php
Browse files Browse the repository at this point in the history
Co-authored-by: Felix Jacobi <felix@jacobi-hamburg.net>
  • Loading branch information
SamuelWei and FelixJacobi committed Apr 4, 2024
1 parent 5361d95 commit abe8a0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BigBlueButton.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class BigBlueButton
*/
public function __construct(?string $baseUrl = null, ?string $secret = null, ?TransportInterface $transport = null, string $hashingAlgorithm = HashingAlgorithm::SHA_1)
{
if (empty($baseUrl)) {
if (null === $baseUrl) {
@trigger_error(sprintf('Constructing "%s" without passing a server base URL is deprecated and will throw an exception 6.0.', self::class), \E_USER_DEPRECATED);

Check warning on line 120 in src/BigBlueButton.php

View check run for this annotation

Codecov / codecov/patch

src/BigBlueButton.php#L120

Added line #L120 was not covered by tests
}

Expand Down

0 comments on commit abe8a0e

Please sign in to comment.