Skip to content

Commit c53cea9

Browse files
committed
Code style fixes from php-cs-fixer.
1 parent 58a3f01 commit c53cea9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/BigBlueButton.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,13 @@ public function __construct(?string $baseUrl = null, ?string $secret = null, ?ar
9494
{
9595
// Provide an early error message if configuration is wrong
9696
if (is_null($baseUrl) && false === getenv('BBB_SERVER_BASE_URL')) {
97-
throw new \RuntimeException('No BBB-Server-Url found! Please provide it either in constructor ' .
98-
"(1st argument) or by environment variable 'BBB_SERVER_BASE_URL'!");
97+
throw new \RuntimeException('No BBB-Server-Url found! Please provide it either in constructor '
98+
. "(1st argument) or by environment variable 'BBB_SERVER_BASE_URL'!");
9999
}
100100

101101
if (is_null($secret) && false === getenv('BBB_SECRET') && false === getenv('BBB_SECURITY_SALT')) {
102-
throw new \RuntimeException('No BBB-Secret (or BBB-Salt) found! Please provide it either in constructor ' .
103-
"(2nd argument) or by environment variable 'BBB_SECRET' (or 'BBB_SECURITY_SALT')!");
102+
throw new \RuntimeException('No BBB-Secret (or BBB-Salt) found! Please provide it either in constructor '
103+
. "(2nd argument) or by environment variable 'BBB_SECRET' (or 'BBB_SECURITY_SALT')!");
104104
}
105105

106106
// Keeping backward compatibility with older deployed versions

0 commit comments

Comments
 (0)