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 ( 4edf76...a91441 )
by Bruno
21:43
created
tests/OnurbTest/Bundle/YumlBundle/Yuml/YumlClientTest.php 1 patch
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.
lib/Onurb/Bundle/YumlBundle/Controller/YumlController.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@
 block discarded – undo
18 18
 class YumlController extends Controller
19 19
 {
20 20
     /**
21
-     * @param YumlClientInterface|null $yumlClient
22 21
      * @return \Symfony\Component\HttpFoundation\RedirectResponse
23 22
      */
24 23
     public function indexAction()
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Onurb\Bundle\YumlBundle\Controller;
4 4
 
5
-use Onurb\Bundle\YumlBundle\Yuml\YumlClient;
6 5
 use Onurb\Bundle\YumlBundle\Yuml\YumlClientInterface;
7 6
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
8 7
 
Please login to merge, or discard this patch.
tests/OnurbTest/Bundle/YumlBundle/Controller/YumlControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
         $this->container->expects($this->any())->method('getParameter')
59 59
             ->will(
60 60
                 $this->returnCallback(
61
-                    function ($arg) {
61
+                    function($arg) {
62 62
                         switch ($arg) {
63 63
                             case 'onurb_yuml.show_fields_description':
64 64
                                 return false;
Please login to merge, or discard this patch.