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 — develop ( 436a0c...675983 )
by Baptiste
02:45
created
src/Instanciator/ReflectionInstanciator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     }
64 64
 
65 65
     /**
66
-     * @param ReflectionMethod $constructor
66
+     * @param \ReflectionMethod $constructor
67 67
      * @param CollectionInterface $properties
68 68
      *
69 69
      * @return CollectionInterface
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     }
88 88
 
89 89
     /**
90
-     * @param ReflectionParameter $parameter
90
+     * @param \ReflectionParameter $parameter
91 91
      * @param CollectionInterface $properties
92 92
      *
93 93
      * @return bool
Please login to merge, or discard this patch.
src/Cache/StrategyCachingCapabilities.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,6 +48,6 @@
 block discarded – undo
48 48
      */
49 49
     private function getCacheKey(string $class, string $key): string
50 50
     {
51
-        return $class . '::' . $key;
51
+        return $class.'::'.$key;
52 52
     }
53 53
 }
Please login to merge, or discard this patch.