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 ( d232a9...57107a )
by Bruno
02:19
created
tests/OnurbTest/Bundle/YumlBundle/Yuml/YumlClientTest.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         $class->expects($this->any())->method('getAssociationNames')->will($this->returnValue(array()));
69 69
         $class->expects($this->any())->method('isIdentifier')->will(
70 70
             $this->returnCallback(
71
-                function ($field) {
71
+                function($field) {
72 72
                     return $field === 'a';
73 73
                 }
74 74
             )
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -1,12 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace OnurbTest\Bundle\YumlBundle\Yuml;
3 3
 
4
-use Onurb\Bundle\YumlBundle\DataCollector\DoctrineYumlDataCollector;
5 4
 use Onurb\Bundle\YumlBundle\Yuml\YumlClient;
6 5
 use Onurb\Doctrine\ORMMetadataGrapher\YUMLMetadataGrapherInterface;
7 6
 use PHPUnit\Framework\TestCase;
8
-use Symfony\Component\HttpFoundation\Response;
9
-use Symfony\Component\HttpFoundation\Request;
10 7
 use Doctrine\ORM\EntityManagerInterface;
11 8
 
12 9
 class YumlClientTest extends TestCase
Please login to merge, or discard this patch.
lib/Onurb/Bundle/YumlBundle/Yuml/YumlClient.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
     }
97 97
 
98 98
     /**
99
-     * @return array
99
+     * @return ClassMetadata[]
100 100
      */
101 101
     private function getMetadata()
102 102
     {
Please login to merge, or discard this patch.
lib/Onurb/Bundle/YumlBundle/Controller/YumlController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Onurb\Bundle\YumlBundle\Yuml\YumlClient;
6 6
 use Onurb\Bundle\YumlBundle\Yuml\YumlClientInterface;
7
-use Symfony\Bridge\Doctrine\RegistryInterface;
8 7
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
9 8
 
10 9
 /**
Please login to merge, or discard this patch.