Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

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 ( 757b9a...3f7054 )
by Sebastian
18s queued 15s
created
Classes/ExpressionLanguage/DocumentTypeFunctionProvider.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,10 +45,10 @@
 block discarded – undo
45 45
     {
46 46
         return new ExpressionFunction(
47 47
             'getDocumentType',
48
-            function () {
48
+            function() {
49 49
                 // Not implemented, we only use the evaluator
50 50
             },
51
-            function ($arguments, $cPid) {
51
+            function($arguments, $cPid) {
52 52
                 /** @var RequestWrapper $requestWrapper */
53 53
                 $requestWrapper = $arguments['request'];
54 54
                 $queryParams = $requestWrapper->getQueryParams();
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,10 +58,12 @@
 block discarded – undo
58 58
     {
59 59
         return new ExpressionFunction(
60 60
             'getDocumentType',
61
-            function () {
61
+            function ()
62
+            {
62 63
                 // Not implemented, we only use the evaluator
63 64
             },
64
-            function ($arguments, $cPid) {
65
+            function ($arguments, $cPid)
66
+            {
65 67
                 /** @var RequestWrapper $requestWrapper */
66 68
                 $requestWrapper = $arguments['request'];
67 69
                 $queryParams = $requestWrapper->getQueryParams();
Please login to merge, or discard this patch.