Passed
Push — master ( 98205f...6f7a23 )
by Thierry
02:22
created
src/Plugin/Response/Dialog/DialogLibraryTrait.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,8 @@
 block discarded – undo
17 17
 trait DialogLibraryTrait
18 18
 {
19 19
     public function setReturnCode(bool $bReturnCode)
20
-    {}
20
+    {
21
+}
21 22
 
22 23
     public function getUri(): string
23 24
     {
Please login to merge, or discard this patch.
src/Request/Call/Call.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -181,8 +181,7 @@
 block discarded – undo
181 181
         }
182 182
         elseif($this->sCondition !== '')
183 183
         {
184
-            $sScript = empty($sMessageScript) ? 'if(' . $this->sCondition . '){' . $sScript . ';}' :
185
-                'if(' . $this->sCondition . '){' . $sScript . ';}else{' . $sMessageScript . ';}';
184
+            $sScript = empty($sMessageScript) ? 'if(' . $this->sCondition . '){' . $sScript . ';}' : 'if(' . $this->sCondition . '){' . $sScript . ';}else{' . $sMessageScript . ';}';
186 185
         }
187 186
         return $this->sVars . $sScript;
188 187
     }
Please login to merge, or discard this patch.