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.
Completed
Push — master ( 78d303...7493af )
by
unknown
05:51
created
src/Twig/BannerExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     public function getFunctions(): array
25 25
     {
26 26
         return [
27
-            new TwigFunction('banner_slider_name', [$this, 'getBannerSliderName'])
27
+            new TwigFunction('banner_slider_name', [ $this, 'getBannerSliderName' ])
28 28
         ];
29 29
     }
30 30
 
Please login to merge, or discard this patch.
src/DependencyInjection/OdiseoSyliusBannerExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@
 block discarded – undo
16 16
      */
17 17
     public function load(array $config, ContainerBuilder $container): void
18 18
     {
19
-        $config = $this->processConfiguration($this->getConfiguration([], $container), $config);
19
+        $config = $this->processConfiguration($this->getConfiguration([ ], $container), $config);
20 20
 
21
-        $container->setParameter('odiseo_sylius_banner_plugin.slider', $config['slider']);
21
+        $container->setParameter('odiseo_sylius_banner_plugin.slider', $config[ 'slider' ]);
22 22
 
23 23
         $loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
24 24
 
Please login to merge, or discard this patch.