Completed
Pull Request — master (#34)
by Adam
09:18
created
src/Response/InsightAlertsResponse.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($alerts)
17 17
     {
18
-        parent::__construct(array_map(function ($alert) {
18
+        parent::__construct(array_map(function($alert) {
19 19
             return new InsightAlertResponse($alert);
20 20
         }, $alerts), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.
src/Response/IdesResponse.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($ides)
17 17
     {
18
-        parent::__construct(array_map(function ($ide) {
18
+        parent::__construct(array_map(function($ide) {
19 19
             return new IdeResponse($ide);
20 20
         }, $ides), self::ARRAY_AS_PROPS);
21 21
     }
Please login to merge, or discard this patch.