Passed
Push — master ( 62b787...9c20b7 )
by Marek
02:15
created
src/OMSAML2.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
             return true;
225 225
         } catch (Exception $e) {
226 226
             self::$idp_certificate = null;
227
-            ContainerSingleton::getInstance()->getLogger()->critical('setIdpCertificate failed: ' . $e->getMessage(), [$e]);
227
+            ContainerSingleton::getInstance()->getLogger()->critical('setIdpCertificate failed: '.$e->getMessage(), [$e]);
228 228
             return false;
229 229
         }
230 230
     }
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
             return true;
359 359
         } catch (Exception $e) {
360 360
             self::$own_private_key = null;
361
-            ContainerSingleton::getInstance()->getLogger()->critical('setOwnPrivateKeyData failed: ' . $e->getMessage(), [$e]);
361
+            ContainerSingleton::getInstance()->getLogger()->critical('setOwnPrivateKeyData failed: '.$e->getMessage(), [$e]);
362 362
             return false;
363 363
         }
364 364
     }
@@ -380,7 +380,7 @@  discard block
 block discarded – undo
380 380
             return true;
381 381
         } catch (Exception $e) {
382 382
             self::$own_certificate = null;
383
-            ContainerSingleton::getInstance()->getLogger()->critical('setOwnCertificatePublicKey failed: ' . $e->getMessage(), [$e]);
383
+            ContainerSingleton::getInstance()->getLogger()->critical('setOwnCertificatePublicKey failed: '.$e->getMessage(), [$e]);
384 384
             return false;
385 385
         }
386 386
     }
@@ -407,7 +407,7 @@  discard block
 block discarded – undo
407 407
         $encoded_element = base64_encode($encoded_element);
408 408
         $encoded_element = urlencode($encoded_element);
409 409
 
410
-        return $base_request_url . (parse_url($base_request_url, PHP_URL_QUERY) ? '&' : '?') . 'SAMLRequest=' . $encoded_element;
410
+        return $base_request_url.(parse_url($base_request_url, PHP_URL_QUERY) ? '&' : '?').'SAMLRequest='.$encoded_element;
411 411
     }
412 412
 
413 413
     /**
Please login to merge, or discard this patch.
src/Chunks/EidasRequestedAttribute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     const NAME_FORMAT_URI = 'urn:oasis:names:tc:SAML:2.0:attrname-format:uri';
12 12
     const NS_EIDAS = 'http://eidas.europa.eu/saml-extensions';
13 13
     const LOCAL_NAME = 'RequestedAttribute';
14
-    const QUALIFIED_NAME = 'eidas:' . self::LOCAL_NAME;
14
+    const QUALIFIED_NAME = 'eidas:'.self::LOCAL_NAME;
15 15
 
16 16
     public $Name = null;
17 17
     public $isRequired = false;
Please login to merge, or discard this patch.
src/Chunks/EidasSPType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     const NS_EIDAS = 'http://eidas.europa.eu/saml-extensions';
11 11
     const LOCAL_NAME = 'SPType';
12
-    const QUALIFIED_NAME = 'eidas:' . self::LOCAL_NAME;
12
+    const QUALIFIED_NAME = 'eidas:'.self::LOCAL_NAME;
13 13
     public $sptype = 'public';
14 14
 
15 15
     public function __construct(?DOMElement $xml = null)
Please login to merge, or discard this patch.
src/Chunks/EidasRequestedAttributes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 
11 11
     const NS_EIDAS = 'http://eidas.europa.eu/saml-extensions';
12 12
     const LOCAL_NAME = 'RequestedAttributes';
13
-    const QUALIFIED_NAME = 'eidas:' . self::LOCAL_NAME;
13
+    const QUALIFIED_NAME = 'eidas:'.self::LOCAL_NAME;
14 14
     /**@var $requested_attributes EidasRequestedAttribute[] */
15 15
     public $requested_attributes = [];
16 16
 
Please login to merge, or discard this patch.