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 (#282)
by Hugo
15:24
created
Relay/Connection/Paginator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
     }
130 130
 
131 131
     /**
132
-     * @param Argument|array $args
132
+     * @param Argument $args
133 133
      *
134 134
      * @return Argument
135 135
      */
Please login to merge, or discard this patch.
DependencyInjection/Compiler/AliasedPass.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@
 block discarded – undo
52 52
         }
53 53
     }
54 54
 
55
+    /**
56
+     * @return string
57
+     */
55 58
     private function guessTagName(Definition $definition)
56 59
     {
57 60
         $tagName = null;
Please login to merge, or discard this patch.
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.
EventListener/ErrorLoggerListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     }
49 49
 
50 50
     /**
51
-     * @param \Throwable $throwable
51
+     * @param \Exception $throwable
52 52
      * @param string     $errorLevel
53 53
      */
54 54
     public function log($throwable, $errorLevel = LogLevel::ERROR)
Please login to merge, or discard this patch.
Controller/GraphController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@
 block discarded – undo
58 58
         return $this->createResponse($request, $schemaName, true);
59 59
     }
60 60
 
61
+    /**
62
+     * @param boolean $batched
63
+     */
61 64
     private function createResponse(Request $request, $schemaName, $batched)
62 65
     {
63 66
         if ('OPTIONS' === $request->getMethod()) {
Please login to merge, or discard this patch.
Resolver/TypeResolver.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@
 block discarded – undo
37 37
         return $item->get();
38 38
     }
39 39
 
40
+    /**
41
+     * @param string $alias
42
+     */
40 43
     private function string2Type($alias)
41 44
     {
42 45
         if (false !== ($type = $this->wrapTypeIfNeeded($alias))) {
Please login to merge, or discard this patch.