@@ -15,7 +15,7 @@  | 
                                                    ||
| 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 | }  | 
                                                        
@@ -15,7 +15,7 @@  | 
                                                    ||
| 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 | }  | 
                                                        
@@ -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 | }  | 
                                                        
@@ -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 | }  | 
                                                        
@@ -15,7 +15,7 @@  | 
                                                    ||
| 15 | 15 | */  | 
                                                        
| 16 | 16 | public function __construct($members)  | 
                                                        
| 17 | 17 |      { | 
                                                        
| 18 | -        parent::__construct(array_map(function ($member) { | 
                                                        |
| 18 | +        parent::__construct(array_map(function($member) { | 
                                                        |
| 19 | 19 | return new MemberResponse($member);  | 
                                                        
| 20 | 20 | }, $members), self::ARRAY_AS_PROPS);  | 
                                                        
| 21 | 21 | }  |