Passed
Pull Request — master (#356)
by Dane
02:18
created
src/Response/DomainsResponse.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 ($domain) {
17
+                static function($domain) {
18 18
                     return new DomainResponse($domain);
19 19
                 },
20 20
                 $domains
Please login to merge, or discard this patch.
src/Response/CronsResponse.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 ($cron) {
17
+                static function($cron) {
18 18
                     return new CronResponse($cron);
19 19
                 },
20 20
                 $crons
Please login to merge, or discard this patch.
src/Response/EnvironmentsResponse.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 ($environment) {
17
+                static function($environment) {
18 18
                     return new EnvironmentResponse($environment);
19 19
                 },
20 20
                 $environments
Please login to merge, or discard this patch.
src/Connector/ClientInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
     /**
75 75
      * Add a query parameter to filter results.
76 76
      */
77
-    public function addQuery(string $name, int|string $value): void;
77
+    public function addQuery(string $name, int | string $value): void;
78 78
 
79 79
     /**
80 80
      * Get options from Client.
Please login to merge, or discard this patch.