Completed
Push — feature/more-metadata-values ( 04e0cc...df50c8 )
by Daan van
05:57 queued 03:45
created
src/OpenConext/Value/Saml/NameIdFormatList.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     {
143 143
         Assertion::isArray($data);
144 144
 
145
-        $nameIdFormats = array_map(function ($nameIdFormat) {
145
+        $nameIdFormats = array_map(function($nameIdFormat) {
146 146
             return NameIdFormat::deserialize($nameIdFormat);
147 147
         }, $data);
148 148
 
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
 
152 152
     public function serialize()
153 153
     {
154
-        return array_map(function (NameIdFormat $nameIdFormat) {
154
+        return array_map(function(NameIdFormat $nameIdFormat) {
155 155
             return $nameIdFormat->serialize();
156 156
         }, $this->nameIdFormats);
157 157
     }
Please login to merge, or discard this patch.