Completed
Push — master ( a0de91...6ebd4b )
by Thijs
06:42 queued 04:11
created
src/SAML2/SOAP.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace SAML2;
4 4
 
5 5
 use DOMDocument;
6
-
7 6
 use SAML2\XML\ecp\Response as ECPResponse;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.
src/SAML2/Binding.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
             case Constants::BINDING_PAOS:
45 45
                 return new SOAP();
46 46
             default:
47
-                throw new \Exception('Unsupported binding: ' . var_export($urn, true));
47
+                throw new \Exception('Unsupported binding: '.var_export($urn, true));
48 48
         }
49 49
     }
50 50
 
@@ -90,15 +90,15 @@  discard block
 block discarded – undo
90 90
 
91 91
         $logger = Utils::getContainer()->getLogger();
92 92
         $logger->warning('Unable to find the SAML 2 binding used for this request.');
93
-        $logger->warning('Request method: ' . var_export($_SERVER['REQUEST_METHOD'], true));
93
+        $logger->warning('Request method: '.var_export($_SERVER['REQUEST_METHOD'], true));
94 94
         if (!empty($_GET)) {
95
-            $logger->warning("GET parameters: '" . implode("', '", array_map('addslashes', array_keys($_GET))) . "'");
95
+            $logger->warning("GET parameters: '".implode("', '", array_map('addslashes', array_keys($_GET)))."'");
96 96
         }
97 97
         if (!empty($_POST)) {
98
-            $logger->warning("POST parameters: '" . implode("', '", array_map('addslashes', array_keys($_POST))) . "'");
98
+            $logger->warning("POST parameters: '".implode("', '", array_map('addslashes', array_keys($_POST)))."'");
99 99
         }
100 100
         if (isset($_SERVER['CONTENT_TYPE'])) {
101
-            $logger->warning('Content-Type: ' . var_export($_SERVER['CONTENT_TYPE'], true));
101
+            $logger->warning('Content-Type: '.var_export($_SERVER['CONTENT_TYPE'], true));
102 102
         }
103 103
 
104 104
         throw new \Exception('Unable to find the current binding.');
Please login to merge, or discard this patch.