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 ( d3dd5e...6ba014 )
by Christian
05:58
created
src/Block/Service/GDPRInformationBlockService.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -71,15 +71,15 @@  discard block
 block discarded – undo
71 71
     {
72 72
         $formMapper->add('settings', ImmutableArrayType::class, [
73 73
             'keys' => [
74
-                ['text', TextType::class, [
74
+                [ 'text', TextType::class, [
75 75
                     'label'    => 'form.label_text',
76 76
                     'required' => false,
77
-                ]],
78
-                ['url', UrlType::class, [
77
+                ] ],
78
+                [ 'url', UrlType::class, [
79 79
                     'label'    => 'form.label_url',
80 80
                     'required' => false,
81
-                ]],
82
-                ['position', ChoiceType::class, [
81
+                ] ],
82
+                [ 'position', ChoiceType::class, [
83 83
                     'label'   => 'form.label_position',
84 84
                     'choices' => [
85 85
                         'form.choice_top'      => 'top',
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
                         'form.choice_bottom'   => 'bottom',
88 88
                         'form.choice_block'    => 'block',
89 89
                     ],
90
-                ]],
90
+                ] ],
91 91
             ],
92 92
             'translation_domain' => 'Core23GDPRBundle',
93 93
         ]);
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     public function getJavascripts($media)
113 113
     {
114 114
         if ($this->hasGdprCookie()) {
115
-            return [];
115
+            return [ ];
116 116
         }
117 117
 
118 118
         return [
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     public function getStylesheets($media)
127 127
     {
128 128
         if ($this->hasGdprCookie()) {
129
-            return [];
129
+            return [ ];
130 130
         }
131 131
 
132 132
         return [
Please login to merge, or discard this patch.