@@ -10,9 +10,9 @@ |
||
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) { |
@@ -15,7 +15,7 @@ |
||
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 | } |
@@ -10,9 +10,9 @@ |
||
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) { |
@@ -15,7 +15,7 @@ |
||
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 | } |
@@ -15,7 +15,7 @@ |
||
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 | } |
@@ -10,9 +10,9 @@ |
||
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) { |
@@ -15,7 +15,7 @@ |
||
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 | } |
@@ -15,7 +15,7 @@ |
||
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 | } |
@@ -15,7 +15,7 @@ |
||
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 | } |
@@ -15,7 +15,7 @@ |
||
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 | } |
@@ -15,7 +15,7 @@ |
||
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 | } |
@@ -15,7 +15,7 @@ |
||
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 | } |