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 ( a11bd1...3fc1f5 )
by Anderson
02:01
created
src/Connection/ElasticConnection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -249,7 +249,7 @@
 block discarded – undo
249 249
      * @param string $_id
250 250
      * @param array $mergeParams
251 251
      * @param array|null $return
252
-     * @return array|null
252
+     * @return null|callable
253 253
      */
254 254
     public function get($index, $type, $_id, array $mergeParams = [], array &$return = null) {
255 255
         if (!$this->indexExists($index)) {
Please login to merge, or discard this patch.
src/Persister/ElasticEntityPersister.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -47,6 +47,9 @@
 block discarded – undo
47 47
         $this->validateEntity($classMetadata->name);
48 48
     }
49 49
 
50
+    /**
51
+     * @param string $className
52
+     */
50 53
     private function validateEntity($className) {
51 54
         $type = $this->annotationReader->getClassAnnotation($this->class->getReflectionClass(), Type::class);
52 55
 
Please login to merge, or discard this patch.