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

Completed
Pull Request — master (#23)
by Jérémiah
12:42
created
Resolver/Config/FieldsConfigSolution.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -149,6 +149,9 @@
 block discarded – undo
149 149
         return $treatedOptions;
150 150
     }
151 151
 
152
+    /**
153
+     * @param callable $expression
154
+     */
152 155
     private function resolveAccessAndWrapResolveCallback($expression, callable $resolveCallback = null)
153 156
     {
154 157
         return function () use ($expression, $resolveCallback) {
Please login to merge, or discard this patch.
Request/Validator/Rule/AbstractQuerySecurity.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -41,6 +41,7 @@
 block discarded – undo
41 41
      * check if equal to 0 no check is done. Must be greater or equal to 0.
42 42
      *
43 43
      * @param $value
44
+     * @param string $name
44 45
      */
45 46
     protected static function checkIfGreaterOrEqualToZero($name, $value)
46 47
     {
Please login to merge, or discard this patch.
Request/Validator/Rule/QueryComplexity.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -117,6 +117,9 @@
 block discarded – undo
117 117
         );
118 118
     }
119 119
 
120
+    /**
121
+     * @param Node $node
122
+     */
120 123
     private function fieldComplexity($node, $complexity = 0)
121 124
     {
122 125
         if (isset($node->selectionSet) && $node->selectionSet instanceof SelectionSet) {
Please login to merge, or discard this patch.
Request/Validator/Rule/QueryDepth.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -79,6 +79,9 @@
 block discarded – undo
79 79
         return $this->getMaxQueryDepth() !== static::DISABLED;
80 80
     }
81 81
 
82
+    /**
83
+     * @param Node $node
84
+     */
82 85
     private function fieldDepth($node, $depth = 0, $maxDepth = 0)
83 86
     {
84 87
         if (isset($node->selectionSet) && $node->selectionSet instanceof SelectionSet) {
Please login to merge, or discard this patch.