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 ( 7667d1...95bdf1 )
by Christian
02:21
created
src/Form/Extension/DownloadTypeExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
Please login to merge, or discard this patch.
src/Form/Extension/HelpTypeExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function configureOptions(OptionsResolver $resolver): void
51 51
     {
52
-        $helpTranslationDomainNormalizer = function (Options $options, $helpTranslationDomain) {
52
+        $helpTranslationDomainNormalizer = function(Options $options, $helpTranslationDomain) {
53 53
             if (true === $helpTranslationDomain) {
54 54
                 return $options['translation_domain'];
55 55
             }
Please login to merge, or discard this patch.
src/Form/Type/GenderType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
                 'male'   => static::TYPE_MALE,
32 32
                 'female' => static::TYPE_FEMALE,
33 33
             ],
34
-            'choice_label' => function ($value, $key, $index) {
34
+            'choice_label' => function($value, $key, $index) {
35 35
                 return 'gender.'.$key;
36 36
             },
37 37
             'choice_translation_domain' => 'Core23FormExtensionsBundle',
Please login to merge, or discard this patch.
src/Form/Type/CountryType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
         $resolver->setDefaults([
28 28
             'choices'      => array_combine($countries, $countries),
29
-            'choice_label' => function ($value, $key, $index) {
29
+            'choice_label' => function($value, $key, $index) {
30 30
                 return 'form.choice_'.strtolower($value);
31 31
             },
32 32
             'translation_domain' => 'Core23FormExtensionsBundle',
Please login to merge, or discard this patch.
src/Form/Type/TimePickerType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
                 $dpKey = substr($key, 3);
46 46
                 $dpKey = preg_replace_callback(
47 47
                     '/_([a-z])/',
48
-                    function ($c) {
48
+                    function($c) {
49 49
                         return strtoupper($c[1]);
50 50
                     },
51 51
                     $dpKey
Please login to merge, or discard this patch.
src/Form/Extension/ImageTypeExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
Please login to merge, or discard this patch.
src/Form/Model/BatchTime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
Please login to merge, or discard this patch.
src/Form/Type/DateTimePickerType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
Please login to merge, or discard this patch.
src/Form/Type/OutputType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
Please login to merge, or discard this patch.