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 ( 6e03ce...1cb502 )
by Bruno
02:41
created
Onurb/Doctrine/ORMMetadataGrapher/YumlMetadataGrapher/StringGenerator.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,6 @@
 block discarded – undo
85 85
 
86 86
     /**
87 87
      * @param ClassMetadata $class1
88
-     * @param ClassStoreInterface $classStore
89 88
      * @param string $association
90 89
      * @return string
91 90
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      */
51 51
     public function getClassString(ClassMetadata $class)
52 52
     {
53
-        $className    = $class->getName();
53
+        $className = $class->getName();
54 54
         if (!isset($this->classStrings[$className])) {
55 55
             $this->visitAssociation($className);
56 56
 
Please login to merge, or discard this patch.
lib/Onurb/Doctrine/ORMMetadataGrapher/YumlMetadataGrapher/ClassStore.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
      */
82 82
     public function getClassByName($className)
83 83
     {
84
-        return isset($this->metadata[$className]) && !empty($this->metadata[$className])?
85
-            $this->metadata[$className]: null;
84
+        return isset($this->metadata[$className]) && !empty($this->metadata[$className]) ?
85
+            $this->metadata[$className] : null;
86 86
     }
87 87
 }
Please login to merge, or discard this patch.
lib/Onurb/Doctrine/ORMMetadataGrapher/YUMLMetadataGrapher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         $this->stringGenerator = new StringGenerator($this->classStore);
58 58
 
59 59
 //        $this->storeClasses($metadata);
60
-        $str                       = array();
60
+        $str = array();
61 61
 
62 62
         foreach ($metadata as $class) {
63 63
             if ($parent = $this->classStore->getParent($class)) {
Please login to merge, or discard this patch.