|
@@ -70,7 +70,7 @@ discard block |
|
|
block discarded – undo |
|
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 |
|
|
block discarded – undo |
|
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
|
} |
Please login to merge, or discard this patch.