Completed
Push — master ( 876946...08c288 )
by Bart
02:55
created
Service/ShibbolethServiceProvider.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@
 block discarded – undo
205 205
 
206 206
     /**
207 207
      * @param string $name
208
-     * @param null   $fallback
208
+     * @param null|double   $fallback
209 209
      * @return null|string
210 210
      */
211 211
     public function getAttribute($name, $fallback = null)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@
 block discarded – undo
232 232
     {
233 233
         $result = true;
234 234
         $empty = microtime(true);
235
-        set_error_handler(function ($errno, $errstr) {
235
+        set_error_handler(function($errno, $errstr) {
236 236
             throw new \Exception($errstr, $errno);
237 237
         });
238 238
         foreach ($keyValues as $checkName => $checkValue) {
Please login to merge, or discard this patch.
Compiler/KuleuvenShibbolethAttributeDefinitionsXmlParserPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
                 }
115 115
             }
116 116
             foreach ($aliases as $alias) {
117
-                $attributeDefinitions[$alias] =& $attributeDefinitions[$id];
117
+                $attributeDefinitions[$alias] = & $attributeDefinitions[$id];
118 118
             }
119 119
         }
120 120
 
Please login to merge, or discard this patch.
Service/HeaderAttributesProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     public function getAttributes()
41 41
     {
42 42
         $attributes = $this->requestStack->getCurrentRequest()->headers->all();
43
-        array_walk($attributes, function (&$value) {
43
+        array_walk($attributes, function(&$value) {
44 44
             $value = (is_array($value) ? implode(';', $value) : $value);
45 45
         });
46 46
         return $attributes;
Please login to merge, or discard this patch.
Service/AttributeDefinitionsProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
                 }
49 49
                 $attributeDefinitions[$id] = $attributeDefinition;
50 50
                 foreach ($aliases as $alias) {
51
-                    $attributeDefinitions[$alias] =& $attributeDefinitions[$id];
51
+                    $attributeDefinitions[$alias] = & $attributeDefinitions[$id];
52 52
                 }
53 53
             }
54 54
 
Please login to merge, or discard this patch.