Passed
Push — master ( 2d33fa...dd9b10 )
by Dane
02:03
created
src/Endpoints/Code.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     /**
32 32
      * Deploys a code branch/tag to an environment.
33 33
      */
34
-    public function switch(string $environmentUuid, string $branch): OperationResponse
34
+    public function switch (string $environmentUuid, string $branch): OperationResponse
35 35
     {
36 36
 
37 37
         $options = [
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
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         parent::__construct(
16 16
             array_map(
17
-                static function ($tag) {
17
+                static function($tag) {
18 18
                     return new TagResponse($tag);
19 19
                 },
20 20
                 $tags
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
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         parent::__construct(
16 16
             array_map(
17
-                static function ($module) {
17
+                static function($module) {
18 18
                     return new InsightModuleResponse($module);
19 19
                 },
20 20
                 $modules
Please login to merge, or discard this patch.
src/Response/DatabaseNamesResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         parent::__construct(
16 16
             array_map(
17
-                static function ($database) {
17
+                static function($database) {
18 18
                     return new DatabaseNameResponse($database);
19 19
                 },
20 20
                 $databases
Please login to merge, or discard this patch.
src/Response/PermissionsResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         parent::__construct(
16 16
             array_map(
17
-                static function ($permission) {
17
+                static function($permission) {
18 18
                     return new PermissionResponse($permission);
19 19
                 },
20 20
                 $permissions
Please login to merge, or discard this patch.
src/Response/InsightsResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         parent::__construct(
16 16
             array_map(
17
-                static function ($insight) {
17
+                static function($insight) {
18 18
                     return new InsightResponse($insight);
19 19
                 },
20 20
                 $insights
Please login to merge, or discard this patch.
src/Response/SubscriptionsResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         parent::__construct(
16 16
             array_map(
17
-                static function ($subscription) {
17
+                static function($subscription) {
18 18
                     return new SubscriptionResponse($subscription);
19 19
                 },
20 20
                 $subscriptions
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
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         parent::__construct(
16 16
             array_map(
17
-                static function ($destination) {
17
+                static function($destination) {
18 18
                     return new LogForwardingDestinationResponse($destination);
19 19
                 },
20 20
                 $destinations
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
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         parent::__construct(
16 16
             array_map(
17
-                static function ($idp) {
17
+                static function($idp) {
18 18
                     return new IdentityProviderResponse($idp);
19 19
                 },
20 20
                 $idps
Please login to merge, or discard this patch.