Passed
Push — master ( f02ba8...a06da1 )
by Tomasz
06:23 queued 10s
created
devices/xml/DeviceXML.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -146,12 +146,12 @@  discard block
 block discarded – undo
146 146
         $this->marshalObject($root, $eapIdp);
147 147
         $dom = dom_import_simplexml($root)->ownerDocument;
148 148
         //TODO schema validation makes sense so probably should be used
149
-        if ($dom->schemaValidate(ROOT . '/devices/xml/eap-metadata.xsd') === FALSE) {
149
+        if ($dom->schemaValidate(ROOT.'/devices/xml/eap-metadata.xsd') === FALSE) {
150 150
             throw new Exception("Schema validation failed for eap-metadata");
151 151
         }
152 152
         $dom->formatOutput = true;
153
-        file_put_contents($this->installerBasename . '.eap-config', $dom->saveXML());
154
-        return($this->installerBasename . '.eap-config');
153
+        file_put_contents($this->installerBasename.'.eap-config', $dom->saveXML());
154
+        return($this->installerBasename.'.eap-config');
155 155
     }
156 156
 
157 157
     private const ATTRIBUTENAMES = [
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
             $this->loggerInstance->debug(4, "Missing class definition for $attrName\n");
178 178
             return([]);
179 179
         }
180
-        $className = "\devices\xml\\" . self::ATTRIBUTENAMES[$attrName];
180
+        $className = "\devices\xml\\".self::ATTRIBUTENAMES[$attrName];
181 181
         $objs = [];
182 182
         if ($this->langScope === 'global') {
183 183
             foreach ($attributeList['langs'] as $language => $value) {
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
                 $displayname = new DisplayName();
216 216
                 if (isset($profileNameLangs)) {
217 217
                     $langOrC = isset($profileNameLangs[$language]) ? $profileNameLangs[$language] : $profileNameLangs['C'];
218
-                    $value .= ' - ' . $langOrC;
218
+                    $value .= ' - '.$langOrC;
219 219
                 }
220 220
                 $displayname->setValue($value);
221 221
                 $displayname->setAttributes(['lang' => $language]);
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
             $displayname = new DisplayName();
226 226
             $value = $attr['general:instname'][0];
227 227
             if ($attr['internal:profile_count'][0] > 1) {
228
-                $value .= ' - ' . $attr['profile:name'][0];
228
+                $value .= ' - '.$attr['profile:name'][0];
229 229
             }
230 230
             $displayname->setValue($value);
231 231
             $objs[] = $displayname;
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
         $attr = $this->attributes;
243 243
         if (isset($attr['general:logo_file'][0])) {
244 244
             $logoString = base64_encode($attr['general:logo_file'][0]);
245
-            $logoMime = 'image/' . $attr['internal:logo_file'][0]['mime'];
245
+            $logoMime = 'image/'.$attr['internal:logo_file'][0]['mime'];
246 246
             $providerlogo = new ProviderLogo();
247 247
             $providerlogo->setAttributes(['mime' => $logoMime, 'encoding' => 'base64']);
248 248
             $providerlogo->setValue($logoString);
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
 
348 348
         if (isset($inner["METHOD"]) && $inner["METHOD"]) {
349 349
             $innerauthmethod = new InnerAuthenticationMethod();
350
-            $typeOfInner = "\devices\xml\\" . ($inner["EAP"] ? 'EAPMethod' : 'NonEAPAuthMethod');
350
+            $typeOfInner = "\devices\xml\\".($inner["EAP"] ? 'EAPMethod' : 'NonEAPAuthMethod');
351 351
             $eapmethod = new $typeOfInner();
352 352
             $eaptype = new Type();
353 353
             $eaptype->setValue(abs($inner['METHOD']));
Please login to merge, or discard this patch.