@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | */ |
71 | 71 | public function buildUrl($method = '', $params = '', $append = true) |
72 | 72 | { |
73 | - return $this->bbbServerBaseUrl . 'api/' . $method . ($append ? '?' . $this->buildQs($method, $params) : ''); |
|
73 | + return $this->bbbServerBaseUrl.'api/'.$method.($append ? '?'.$this->buildQs($method, $params) : ''); |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |
@@ -83,6 +83,6 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public function buildQs($method = '', $params = '') |
85 | 85 | { |
86 | - return $params . '&checksum=' . hash($this->hashingAlgorithm, $method . $params . $this->securitySalt); |
|
86 | + return $params.'&checksum='.hash($this->hashingAlgorithm, $method.$params.$this->securitySalt); |
|
87 | 87 | } |
88 | 88 | } |