GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Branch master (385224)
by Ayesh
03:29
created
src/Parser.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace SLWDC\NICParser;
5 5
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
       throw new InvalidIdentityCardNumberException('Birth year is out ff 1900-2100 range', 200);
88 88
     }
89 89
 
90
-    $birthday = new \DateTime();mktime(0, 0, 0, 0, 0, $year);
90
+    $birthday = new \DateTime(); mktime(0, 0, 0, 0, 0, $year);
91 91
     $birthday->setDate($year, 1, 1)->setTime(0, 0, 0);
92 92
     $birth_days_since = (int) substr($full_number, 4, 3);
93 93
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,8 +94,7 @@
 block discarded – undo
94 94
     if ($birth_days_since > 500) {
95 95
       $birth_days_since -= 500;
96 96
       $this->data_components['gender'] = 'F';
97
-    }
98
-    else {
97
+    } else {
99 98
       $this->data_components['gender'] = 'M';
100 99
     }
101 100
 
Please login to merge, or discard this patch.