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 (#264)
by Jérémiah
31:34 queued 16:19
created
Relay/Connection/Paginator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      * @param int|callable $total
91 91
      * @param array        $callableArgs
92 92
      *
93
-     * @return Connection|object A connection or a promise
93
+     * @return Connection A connection or a promise
94 94
      */
95 95
     public function auto($args, $total, $callableArgs = [])
96 96
     {
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     }
132 132
 
133 133
     /**
134
-     * @param Argument|array $args
134
+     * @param Argument $args
135 135
      *
136 136
      * @return Argument
137 137
      */
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.
Resolver/TypeResolver.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -49,6 +49,9 @@  discard block
 block discarded – undo
49 49
         return $this->baseType($alias);
50 50
     }
51 51
 
52
+    /**
53
+     * @param string $alias
54
+     */
52 55
     private function baseType($alias)
53 56
     {
54 57
         try {
@@ -68,6 +71,9 @@  discard block
 block discarded – undo
68 71
         );
69 72
     }
70 73
 
74
+    /**
75
+     * @param string $alias
76
+     */
71 77
     private function wrapTypeIfNeeded($alias)
72 78
     {
73 79
         // Non-Null
Please login to merge, or discard this patch.
Tests/ExpressionLanguage/AuthorizationExpressionProviderTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -104,6 +104,10 @@
 block discarded – undo
104 104
         );
105 105
     }
106 106
 
107
+    /**
108
+     * @param string $expression
109
+     * @param \PHPUnit\Framework\MockObject\Matcher\InvokedCount $expects
110
+     */
107 111
     private function assertExpressionCompile($expression, $with, array $expressionValues = [], $expects = null, $return = true, $assertMethod = 'assertTrue')
108 112
     {
109 113
         $authChecker = $this->getAuthorizationCheckerIsGrantedWithExpectation($with, $expects, $return);
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
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     }
53 53
 
54 54
     /**
55
-     * @param \Throwable $exception
55
+     * @param \Exception $exception
56 56
      * @param string     $errorLevel
57 57
      */
58 58
     public function logException($exception, $errorLevel = LogLevel::ERROR)
Please login to merge, or discard this patch.