Completed
Push — master ( d1b2ba...1d1f81 )
by Ronaldo
08:10
created
src/Environment.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function getWsUrl($resource)
30 30
     {
31
-        return 'https://' . $this->getWsHost() . $resource;
31
+        return 'https://'.$this->getWsHost().$resource;
32 32
     }
33 33
 
34 34
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public function getUrl($resource)
40 40
     {
41
-        return 'https://' . $this->getHost() . $resource;
41
+        return 'https://'.$this->getHost().$resource;
42 42
     }
43 43
 
44 44
 
Please login to merge, or discard this patch.
src/Credentials.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
      */
94 94
     public function getWsUrl($resource, $params = false)
95 95
     {
96
-        $resource = '/' . ltrim($resource, '/');
96
+        $resource = '/'.ltrim($resource, '/');
97 97
 
98 98
         if ($params && !empty($params)) {
99 99
             return sprintf(
Please login to merge, or discard this patch.
src/Resources/BaseResource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -224,7 +224,7 @@
 block discarded – undo
224 224
         $outputErr = 'Some errors occurred:';
225 225
 
226 226
         foreach ($erros as $field => $message) {
227
-            $outputErr .= PHP_EOL . '[' . $field . '] ' . implode('', $message);
227
+            $outputErr .= PHP_EOL.'['.$field.'] '.implode('', $message);
228 228
         }
229 229
 
230 230
         throw new \InvalidArgumentException($outputErr);
Please login to merge, or discard this patch.