Passed
Branch master (e3e986)
by Adam
04:38
created
src/Response/EnvironmentsResponse.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
 {
11 11
 
12 12
     /**
13
-    * EnvironmentsResponse constructor.
14
-    * @param array $environments
15
-    */
13
+     * EnvironmentsResponse constructor.
14
+     * @param array $environments
15
+     */
16 16
     public function __construct($environments)
17 17
     {
18 18
         parent::__construct(array_map(function ($environment) {
Please login to merge, or discard this 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($environments)
17 17
     {
18
-        parent::__construct(array_map(function ($environment) {
18
+        parent::__construct(array_map(function($environment) {
19 19
             return new EnvironmentResponse($environment);
20 20
         }, $environments), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.
src/Response/OrganizationsResponse.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
 {
11 11
 
12 12
     /**
13
-    * OrganizationsResponse constructor.
14
-    * @param array $organizations
15
-    */
13
+     * OrganizationsResponse constructor.
14
+     * @param array $organizations
15
+     */
16 16
     public function __construct($organizations)
17 17
     {
18 18
         parent::__construct(array_map(function ($organization) {
Please login to merge, or discard this 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($organizations)
17 17
     {
18
-        parent::__construct(array_map(function ($organization) {
18
+        parent::__construct(array_map(function($organization) {
19 19
             return new OrganizationResponse($organization);
20 20
         }, $organizations), 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/RolesResponse.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
 {
11 11
 
12 12
     /**
13
-    * RolesResponse constructor.
14
-    * @param array $roles
15
-    */
13
+     * RolesResponse constructor.
14
+     * @param array $roles
15
+     */
16 16
     public function __construct($roles)
17 17
     {
18 18
         parent::__construct(array_map(function ($role) {
Please login to merge, or discard this 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($roles)
17 17
     {
18
-        parent::__construct(array_map(function ($role) {
18
+        parent::__construct(array_map(function($role) {
19 19
             return new RoleResponse($role);
20 20
         }, $roles), 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.