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
Push — master ( 0de292...c7f65a )
by Christian
02:22
created
src/Model/BatchTime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
      */
76 76
     public function getSeconds(): int
77 77
     {
78
-        $seconds =  $this->getDay() * 86400;
78
+        $seconds = $this->getDay() * 86400;
79 79
 
80 80
         if (null !== $this->getTime()) {
81 81
             $time = clone $this->getTime();
Please login to merge, or discard this patch.
src/Type/GenderType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
                 'male'   => static::TYPE_MALE,
32 32
                 'female' => static::TYPE_FEMALE,
33 33
             ],
34
-            'choice_label' => static function ($value, $key, $index) {
34
+            'choice_label' => static function($value, $key, $index) {
35 35
                 return 'gender.'.$key;
36 36
             },
37 37
             'choice_translation_domain' => 'Core23FormBundle',
Please login to merge, or discard this patch.
src/Extension/HelpTypeExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
      */
46 46
     public function configureOptions(OptionsResolver $resolver): void
47 47
     {
48
-        $helpTranslationDomainNormalizer = static function (Options $options, $helpTranslationDomain) {
48
+        $helpTranslationDomainNormalizer = static function(Options $options, $helpTranslationDomain) {
49 49
             if (null === $helpTranslationDomain && $options->offsetExists('translation_domain')) {
50 50
                 return $options->offsetGet('translation_domain');
51 51
             }
Please login to merge, or discard this patch.