Passed
Push — master ( 2d33fa...dd9b10 )
by Dane
02:03
created
src/Response/MembersResponse.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 ($member) {
17
+                static function($member) {
18 18
                     return new MemberResponse($member);
19 19
                 },
20 20
                 $members
Please login to merge, or discard this patch.
src/Response/InvitationsResponse.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 ($invitation) {
17
+                static function($invitation) {
18 18
                     return new InvitationResponse($invitation);
19 19
                 },
20 20
                 $invitations
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
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         parent::__construct(
16 16
             array_map(
17
-                static function ($metric) {
17
+                static function($metric) {
18 18
                     return new MetricResponse($metric);
19 19
                 },
20 20
                 $metrics
Please login to merge, or discard this patch.
src/Response/ServersResponse.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 ($server) {
17
+                static function($server) {
18 18
                     return new ServerResponse($server);
19 19
                 },
20 20
                 $servers
Please login to merge, or discard this patch.
src/Response/DatabasesResponse.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 DatabaseResponse($database);
19 19
                 },
20 20
                 $databases
Please login to merge, or discard this patch.
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.