Passed
Pull Request — master (#34)
by Adam
03:39
created
src/Connector/Connector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
 
70 70
         return $this->provider->getAuthenticatedRequest(
71 71
             $verb,
72
-            self::BASE_URI . $path,
72
+            self::BASE_URI.$path,
73 73
             $this->accessToken
74 74
         );
75 75
     }
Please login to merge, or discard this patch.
src/Response/LogForwardingDestinationsResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function __construct($destinations)
17 17
     {
18
-        parent::__construct(array_map(function ($destination) {
18
+        parent::__construct(array_map(function($destination) {
19 19
             return new LogForwardingDestinationResponse($destination);
20 20
         }, $destinations), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.
src/Endpoints/Code.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      * @param string $branch
50 50
      * @return OperationResponse
51 51
      */
52
-    public function switch($environmentUuid, $branch)
52
+    public function switch ($environmentUuid, $branch)
53 53
     {
54 54
 
55 55
         $options = [
Please login to merge, or discard this patch.
src/Response/SslCertificatesResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function __construct($certificates)
17 17
     {
18
-        parent::__construct(array_map(function ($certificate) {
18
+        parent::__construct(array_map(function($certificate) {
19 19
             return new SslCertificateResponse($certificate);
20 20
         }, $certificates), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.
src/Response/LogsResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function __construct($logs)
17 17
     {
18
-        parent::__construct(array_map(function ($log) {
18
+        parent::__construct(array_map(function($log) {
19 19
             return new LogResponse($log);
20 20
         }, $logs), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.
src/Response/TagsResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function __construct($tags)
17 17
     {
18
-        parent::__construct(array_map(function ($tag) {
18
+        parent::__construct(array_map(function($tag) {
19 19
             return new TagResponse($tag);
20 20
         }, $tags), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.
src/Response/InsightModulesResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function __construct($modules)
17 17
     {
18
-        parent::__construct(array_map(function ($module) {
18
+        parent::__construct(array_map(function($module) {
19 19
             return new InsightModuleResponse($module);
20 20
         }, $modules), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.
src/Response/MetricsResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function __construct($metrics)
17 17
     {
18
-        parent::__construct(array_map(function ($metric) {
18
+        parent::__construct(array_map(function($metric) {
19 19
             return new MetricResponse($metric);
20 20
         }, $metrics), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.
src/Response/IdentityProvidersResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function __construct($idps)
17 17
     {
18
-        parent::__construct(array_map(function ($idp) {
18
+        parent::__construct(array_map(function($idp) {
19 19
             return new IdentityProviderResponse($idp);
20 20
         }, $idps), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.