Completed
Pull Request — master (#54)
by Thijs
04:54
created
src/SAML2/Binding.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
             case SAML2_Const::BINDING_HOK_SSO:
38 38
                 return new SAML2_HTTPPost();
39 39
             default:
40
-                throw new Exception('Unsupported binding: ' . var_export($urn, TRUE));
40
+                throw new Exception('Unsupported binding: '.var_export($urn, TRUE));
41 41
         }
42 42
     }
43 43
 
@@ -83,15 +83,15 @@  discard block
 block discarded – undo
83 83
 
84 84
         $logger = SAML2_Utils::getContainer()->getLogger();
85 85
         $logger->warning('Unable to find the SAML 2 binding used for this request.');
86
-        $logger->warning('Request method: ' . var_export($_SERVER['REQUEST_METHOD'], TRUE));
86
+        $logger->warning('Request method: '.var_export($_SERVER['REQUEST_METHOD'], TRUE));
87 87
         if (!empty($_GET)) {
88
-            $logger->warning("GET parameters: '" . implode("', '", array_map('addslashes', array_keys($_GET))) . "'");
88
+            $logger->warning("GET parameters: '".implode("', '", array_map('addslashes', array_keys($_GET)))."'");
89 89
         }
90 90
         if (!empty($_POST)) {
91
-            $logger->warning("POST parameters: '" . implode("', '", array_map('addslashes', array_keys($_POST))) . "'");
91
+            $logger->warning("POST parameters: '".implode("', '", array_map('addslashes', array_keys($_POST)))."'");
92 92
         }
93 93
         if (isset($_SERVER['CONTENT_TYPE'])) {
94
-            $logger->warning('Content-Type: ' . var_export($_SERVER['CONTENT_TYPE'], TRUE));
94
+            $logger->warning('Content-Type: '.var_export($_SERVER['CONTENT_TYPE'], TRUE));
95 95
         }
96 96
 
97 97
         throw new Exception('Unable to find the current binding.');
Please login to merge, or discard this patch.