Completed
Push — master ( 708e67...eac861 )
by Thijs
14s
created
src/SAML2/XML/md/ContactPerson.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     {
116 116
         assert(is_string($name));
117 117
 
118
-        $e = Utils::xpQuery($parent, './saml_metadata:' . $name);
118
+        $e = Utils::xpQuery($parent, './saml_metadata:'.$name);
119 119
 
120 120
         $ret = array();
121 121
         foreach ($e as $i) {
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
             return null;
143 143
         }
144 144
         if (count($e) > 1) {
145
-            throw new \Exception('More than one ' . $name . ' in ' . $parent->tagName);
145
+            throw new \Exception('More than one '.$name.' in '.$parent->tagName);
146 146
         }
147 147
 
148 148
         return $e[0];
Please login to merge, or discard this patch.