@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | */ |
68 | 68 | public function buildUrl(string $method = '', string $params = '', bool $append = true): string |
69 | 69 | { |
70 | - return $this->bbbServerBaseUrl . 'api/' . $method . ($append ? '?' . $this->buildQs($method, $params) : ''); |
|
70 | + return $this->bbbServerBaseUrl.'api/'.$method.($append ? '?'.$this->buildQs($method, $params) : ''); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public function buildQs(string $method = '', string $params = ''): string |
77 | 77 | { |
78 | - return $params . '&checksum=' . hash($this->hashingAlgorithm, $method . $params . $this->securitySalt); |
|
78 | + return $params.'&checksum='.hash($this->hashingAlgorithm, $method.$params.$this->securitySalt); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | // URL-Generators |