Completed
Pull Request — master (#13)
by Adam
03:50 queued 44s
created
src/Response/TasksResponse.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($tasks)
17 17
     {
18
-        parent::__construct(array_map(function ($task) {
18
+        parent::__construct(array_map(function($task) {
19 19
             return new TaskResponse($task);
20 20
         }, $tasks), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.
src/Response/DomainsResponse.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($domains)
17 17
     {
18
-        parent::__construct(array_map(function ($domain) {
18
+        parent::__construct(array_map(function($domain) {
19 19
             return new DomainResponse($domain);
20 20
         }, $domains), self::ARRAY_AS_PROPS);
21 21
     }
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
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function __construct($servers)
17 17
     {
18
-        parent::__construct(array_map(function ($server) {
18
+        parent::__construct(array_map(function($server) {
19 19
             return new ServerResponse($server);
20 20
         }, $servers), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.
src/Response/ApplicationsResponse.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($applications)
17 17
     {
18
-        parent::__construct(array_map(function ($application) {
18
+        parent::__construct(array_map(function($application) {
19 19
             return new ApplicationResponse($application);
20 20
         }, $applications), self::ARRAY_AS_PROPS);
21 21
     }
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
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function __construct($databases)
17 17
     {
18
-        parent::__construct(array_map(function ($database) {
18
+        parent::__construct(array_map(function($database) {
19 19
             return new DatabaseResponse($database);
20 20
         }, $databases), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.
src/Response/BackupsResponse.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($backups)
17 17
     {
18
-        parent::__construct(array_map(function ($backup) {
18
+        parent::__construct(array_map(function($backup) {
19 19
             return new BackupResponse($backup);
20 20
         }, $backups), self::ARRAY_AS_PROPS);
21 21
     }
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
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function __construct($crons)
17 17
     {
18
-        parent::__construct(array_map(function ($cron) {
18
+        parent::__construct(array_map(function($cron) {
19 19
             return new CronResponse($cron);
20 20
         }, $crons), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.
src/Response/BranchesResponse.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($branches)
17 17
     {
18
-        parent::__construct(array_map(function ($branch) {
18
+        parent::__construct(array_map(function($branch) {
19 19
             return new BranchResponse($branch);
20 20
         }, $branches), self::ARRAY_AS_PROPS);
21 21
     }
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
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function __construct($insights)
17 17
     {
18
-        parent::__construct(array_map(function ($insight) {
18
+        parent::__construct(array_map(function($insight) {
19 19
             return new InsightResponse($insight);
20 20
         }, $insights), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.