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 ( cb7f05...c88989 )
by Maximilian
09:13
created
Command/SessionCleanupCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
163 163
     /**
164 164
      * Outputs the suces after the cleanup.
165 165
      *
166
-     * @param                 $processed
166
+     * @param                 integer $processed
167 167
      * @param OutputInterface $output
168 168
      */
169 169
     private function displaySuccess($processed, OutputInterface $output)
Please login to merge, or discard this patch.
Service/Mapping/ClassMetadata.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     /**
44 44
      * Constructor.
45 45
      *
46
-     * @param ReflectionProperty|string[] $properties
46
+     * @param string[] $properties
47 47
      *
48 48
      * @throws \InvalidArgumentException If one necessary property is missing
49 49
      */
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
      * @param string $oid
167 167
      * @param string $property
168 168
      *
169
-     * @return mixed|null
169
+     * @return string|null
170 170
      */
171 171
     private function resolveCache($oid, $property)
172 172
     {
Please login to merge, or discard this patch.
CacheWarmer/ClassMetadataPropertiesCacheWarmer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
         $metadata = $this->driver->getMetadataForUser();
67 67
 
68 68
         return serialize(
69
-            array_map(function (\ReflectionProperty $property) {
69
+            array_map(function(\ReflectionProperty $property) {
70 70
                 return $property->getName();
71 71
             }, $metadata)
72 72
         );
Please login to merge, or discard this patch.