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.
src/Query/ElasticWalker.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use DoctrineElastic\Mapping\Type;
16 16
 use DoctrineElastic\Query\Walker\Helper\WalkerHelper;
17 17
 use DoctrineElastic\Query\Walker\WhereWalker;
18
-use DoctrineElastic\Service\ElasticSearchService;
19 18
 
20 19
 /**
21 20
  * Main walker for queries
Please login to merge, or discard this patch.
src/Query/Walker/WhereWalker.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use Doctrine\ORM\Query\AST\Node;
16 16
 use Doctrine\ORM\Query\AST\NullComparisonExpression;
17 17
 use Doctrine\ORM\Query\AST\PathExpression;
18
-use Doctrine\ORM\Query\AST\SimpleArithmeticExpression;
19 18
 use Doctrine\ORM\Query\AST\WhereClause;
20 19
 use DoctrineElastic\Elastic\ElasticQuery;
21 20
 use DoctrineElastic\Elastic\SearchParams;
Please login to merge, or discard this patch.
src/ElasticUnitOfWork.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -337,7 +337,7 @@
 block discarded – undo
337 337
     }
338 338
 
339 339
     public function delete($entity) {
340
-        if(!is_object($entity)){
340
+        if (!is_object($entity)) {
341 341
             throw new InvalidArgumentException('Trying to schedule a non object to delete');
342 342
         }
343 343
 
Please login to merge, or discard this patch.