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