Passed
Push — master ( ce8c45...63bd36 )
by Tim
02:03
created
lib/Aggregator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -313,7 +313,7 @@
 block discarded – undo
313 313
             return;
314 314
         }
315 315
 
316
-        $expireInfo = (string)$expires;
316
+        $expireInfo = (string) $expires;
317 317
         if ($tag !== null) {
318 318
             $expireInfo .= ':'.$tag;
319 319
         }
Please login to merge, or discard this patch.
lib/EntitySource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -240,7 +240,7 @@
 block discarded – undo
240 240
         $cacheFile = $this->aggregator->getCacheFile($this->cacheId);
241 241
 
242 242
         if (!file_exists($cacheFile)) {
243
-            Logger::error($this->logLoc . 'No cached metadata available.');
243
+            Logger::error($this->logLoc.'No cached metadata available.');
244 244
             return null;
245 245
         }
246 246
 
Please login to merge, or discard this patch.
hooks/hook_cron.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
             $a = \SimpleSAML\Module\aggregator2\Aggregator::getAggregator($id);
29 29
             $a->updateCache();
30 30
         } catch (\Exception $e) {
31
-            $croninfo['summary'][] = 'Error during aggregator2 cacheupdate: ' . $e->getMessage();
31
+            $croninfo['summary'][] = 'Error during aggregator2 cacheupdate: '.$e->getMessage();
32 32
         }
33 33
     }
34 34
 }
Please login to merge, or discard this patch.
www/get.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 }
37 37
 
38 38
 header('Content-Type: '.$mimetype);
39
-header('Content-Length: ' . strlen($xml));
39
+header('Content-Length: '.strlen($xml));
40 40
 
41 41
 /*
42 42
  * At this point, if the ID was forged, getMetadata() would
Please login to merge, or discard this patch.