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

Passed
Push — annotations ( 28ae84...6909ee )
by Jérémiah
17:17
created
src/Error/ErrorHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
      * @param GraphQLError[] $errors
96 96
      * @param bool           $throwRawException
97 97
      *
98
-     * @return array
98
+     * @return callable
99 99
      *
100 100
      * @throws \Error|\Exception
101 101
      */
Please login to merge, or discard this patch.
src/Definition/Type/CustomScalarType.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -42,6 +42,9 @@
 block discarded – undo
42 42
         return $this->call('parseLiteral', $valueNode);
43 43
     }
44 44
 
45
+    /**
46
+     * @param string $type
47
+     */
45 48
     private function call($type, $value)
46 49
     {
47 50
         if (isset($this->config['scalarType'])) {
Please login to merge, or discard this patch.
src/Resolver/AccessResolver.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -59,6 +59,9 @@
 block discarded – undo
59 59
         return $this->processFilter($result, $accessChecker, $resolveArgs);
60 60
     }
61 61
 
62
+    /**
63
+     * @param callable $accessChecker
64
+     */
62 65
     private function processFilter($result, $accessChecker, $resolveArgs)
63 66
     {
64 67
         /** @var ResolveInfo $resolveInfo */
Please login to merge, or discard this patch.
src/Resolver/ResolverMap.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -82,6 +82,9 @@
 block discarded – undo
82 82
         return $covered;
83 83
     }
84 84
 
85
+    /**
86
+     * @param callable[] $map
87
+     */
85 88
     private function checkMap($map): void
86 89
     {
87 90
         if (!\is_array($map) && !($map instanceof \ArrayAccess && $map instanceof \Traversable)) {
Please login to merge, or discard this patch.