Passed
Pull Request — master (#489)
by
unknown
13:13
created
src/Response/SshKeysResponse.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 ($sshkey) {
17
+                static function($sshkey) {
18 18
                     return new SshKeyResponse($sshkey);
19 19
                 },
20 20
                 $sshkeys
Please login to merge, or discard this patch.
src/Response/TeamsResponse.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 ($team) {
17
+                static function($team) {
18 18
                     return new TeamResponse($team);
19 19
                 },
20 20
                 $teams
Please login to merge, or discard this patch.
src/Response/OrganizationsResponse.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 ($organization) {
17
+                static function($organization) {
18 18
                     return new OrganizationResponse($organization);
19 19
                 },
20 20
                 $organizations
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
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         parent::__construct(
16 16
             array_map(
17
-                static function ($log) {
17
+                static function($log) {
18 18
                     return new LogResponse($log);
19 19
                 },
20 20
                 $logs
Please login to merge, or discard this patch.
src/Response/InsightAlertsResponse.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 ($alert) {
17
+                static function($alert) {
18 18
                     return new InsightAlertResponse($alert);
19 19
                 },
20 20
                 $alerts
Please login to merge, or discard this patch.
src/Response/RolesResponse.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 ($role) {
17
+                static function($role) {
18 18
                     return new RoleResponse($role);
19 19
                 },
20 20
                 $roles
Please login to merge, or discard this patch.
src/Response/VariablesResponse.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 ($variable) {
17
+                static function($variable) {
18 18
                     return new VariableResponse($variable);
19 19
                 },
20 20
                 $variables
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
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         parent::__construct(
16 16
             array_map(
17
-                static function ($certificate) {
17
+                static function($certificate) {
18 18
                     return new SslCertificateResponse($certificate);
19 19
                 },
20 20
                 $certificates
Please login to merge, or discard this patch.
src/Response/IdesResponse.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 ($ide) {
17
+                static function($ide) {
18 18
                     return new IdeResponse($ide);
19 19
                 },
20 20
                 $ides
Please login to merge, or discard this patch.