Passed
Push — master ( 1e3209...eb7345 )
by Tim
25:29 queued 22:58
created
hooks/hook_configpage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
  *
12 12
  * @param \SimpleSAML\XHTML\Template &$template The template that we should alter in this hook.
13 13
  */
14
-function aggregator2_hook_configpage(Template &$template): void
14
+function aggregator2_hook_configpage(Template & $template): void
15 15
 {
16 16
     $template->data['links'][] = [
17 17
         'href' => Module::getModuleURL('aggregator2/'),
Please login to merge, or discard this patch.
src/Aggregator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -530,7 +530,7 @@
 block discarded – undo
530 530
             entityDescriptors: $children,
531 531
             validUntil: $now,
532 532
             extensions: empty($extensions) ? null : new Extensions($extensions),
533
-            Name: $this->name,
533
+            Name : $this->name,
534 534
         );
535 535
 
536 536
         return $ret;
Please login to merge, or discard this patch.
src/EntitySource.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      *
77 77
      * @var \SimpleSAML\SAML2\XML\md\EntitiesDescriptor|\SimpleSAML\SAML2\XML\md\EntityDescriptor|null
78 78
      */
79
-    protected EntityDescriptor|EntitiesDescriptor|null $metadata = null;
79
+    protected EntityDescriptor | EntitiesDescriptor | null $metadata = null;
80 80
 
81 81
     /**
82 82
      * The cache ID.
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
      * @return \SimpleSAML\SAML2\XML\md\EntitiesDescriptor|\SimpleSAML\SAML2\XML\md\EntityDescriptor|null
130 130
      * The downloaded metadata or NULL if we were unable to download or parse it.
131 131
      */
132
-    private function downloadMetadata(): EntitiesDescriptor|EntityDescriptor|null
132
+    private function downloadMetadata(): EntitiesDescriptor | EntityDescriptor | null
133 133
     {
134 134
         Logger::debug($this->logLoc . 'Downloading metadata from ' . var_export($this->url, true));
135 135
         $configUtils = new Utils\Config();
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
      * @return \SimpleSAML\SAML2\XML\md\EntityDescriptor|\SimpleSAML\SAML2\XML\md\EntitiesDescriptor|null
253 253
      *   The downloaded metadata.
254 254
      */
255
-    public function getMetadata(): EntityDescriptor|EntitiesDescriptor|null
255
+    public function getMetadata(): EntityDescriptor | EntitiesDescriptor | null
256 256
     {
257 257
         if ($this->metadata !== null) {
258 258
             /* We have already downloaded the metdata. */
Please login to merge, or discard this patch.