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 3d67968 commit 5361d95
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 @@ -120,7 +120,7 @@ public function __construct(?string $baseUrl = null, ?string $secret = null, ?Tr
@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);
}

if (empty($secret)) {
if (null === $secret) {
@trigger_error(sprintf('Constructing "%s" without passing a secret is deprecated and will throw an exception 6.0.', self::class), \E_USER_DEPRECATED);
}

Expand Down

0 comments on commit 5361d95

Please sign in to comment.