Passed
Push — master ( debac0...101097 )
by Ghazi
02:32 queued 15s
created
src/Util/UrlBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.