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.
Passed
Push — feature/2.2/provide_field_usab... ( b3bc72...c2f535 )
by Simone
03:23
created
src/Mado/QueryBundle/Component/Sherlock/CurrentMetaData.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
     public function justEntitiesMetadata() : array
34 34
     {
35
-        return array_map(function ($item) {
35
+        return array_map(function($item) {
36 36
             return $item->rootEntityName;
37 37
         }, $this->metadata);
38 38
     }
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     {
42 42
         $this->currentMetadata = $this->manager->getClassMetadata($entityClass);
43 43
 
44
-        return array_map(function ($item) {
44
+        return array_map(function($item) {
45 45
             return Dictionary::getOperatorsFromDoctrineType($item['type']);
46 46
         }, $this->currentMetadata->fieldMappings);
47 47
     }
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     {
51 51
         $this->currentMetadata = $this->manager->getClassMetadata($entityClass);
52 52
 
53
-        return array_map(function ($item) {
53
+        return array_map(function($item) {
54 54
             return $item['type'];
55 55
         }, $this->currentMetadata->fieldMappings);
56 56
     }
Please login to merge, or discard this patch.