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 ( 520523...db3339 )
by Edi
01:41
created
bundle/Handler/FieldType/Handler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      *
45 45
      * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException If number of params is incorrect
46 46
      *
47
-     * @return \Netgen\Bundle\OpenGraphBundle\MetaTag\Item[]
47
+     * @return Item[]
48 48
      */
49 49
     public function getMetaTags($tagName, array $params = [])
50 50
     {
Please login to merge, or discard this patch.
bundle/DependencyInjection/NetgenOpenGraphExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         $processor = new ConfigurationProcessor($container, 'netgen_open_graph');
50 50
         $processor->mapConfig(
51 51
             $config,
52
-            static function ($scopeSettings, $currentScope, ContextualizerInterface $contextualizer) {
52
+            static function($scopeSettings, $currentScope, ContextualizerInterface $contextualizer) {
53 53
                 foreach ($scopeSettings as $key => $value) {
54 54
                     $contextualizer->setContextualParameter($key, $currentScope, $value);
55 55
                 }
Please login to merge, or discard this patch.
bundle/MetaTag/Collector.php 1 patch
Spacing   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,13 +54,11 @@
 block discarded – undo
54 54
         $metaTags = [];
55 55
 
56 56
         $allHandlers = $this->configResolver->hasParameter('global_handlers', 'netgen_open_graph') ?
57
-            $this->configResolver->getParameter('global_handlers', 'netgen_open_graph') :
58
-            [];
57
+            $this->configResolver->getParameter('global_handlers', 'netgen_open_graph') : [];
59 58
 
60 59
         $contentType = $this->contentTypeService->loadContentType($content->contentInfo->contentTypeId);
61 60
         $contentTypeHandlers = $this->configResolver->hasParameter('content_type_handlers', 'netgen_open_graph') ?
62
-            $this->configResolver->getParameter('content_type_handlers', 'netgen_open_graph') :
63
-            [];
61
+            $this->configResolver->getParameter('content_type_handlers', 'netgen_open_graph') : [];
64 62
 
65 63
         if (isset($contentTypeHandlers[$contentType->identifier])) {
66 64
             $allHandlers = array_merge(
Please login to merge, or discard this patch.