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
Pull Request — master (#13)
by Enrico
07:25 queued 04:24
created
src/Assert.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,13 +40,13 @@
 block discarded – undo
40 40
         // Assume references are relative to the current file
41 41
         // Create an issue or pull request if you need more complex use cases
42 42
         $refResolver = new RefResolver(new UriRetriever(), new UriResolver());
43
-        $schemaObj = $refResolver->resolve('file://' . realpath($schema));
43
+        $schemaObj = $refResolver->resolve('file://'.realpath($schema));
44 44
 
45 45
         $validator = new Validator();
46 46
         $validator->check($content, $schemaObj);
47 47
 
48 48
         $message = '- Property: %s, Contraint: %s, Message: %s';
49
-        $messages = array_map(function ($exception) use ($message) {
49
+        $messages = array_map(function($exception) use ($message) {
50 50
             return sprintf($message, $exception['property'], $exception['constraint'], $exception['message']);
51 51
         }, $validator->getErrors());
52 52
         $messages[] = '- Response: '.json_encode($content);
Please login to merge, or discard this patch.