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
Pull Request — master (#271)
by Hugo
14:58
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/TestCase.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -30,6 +30,10 @@
 block discarded – undo
30 30
      */
31 31
     abstract protected function getFunctions();
32 32
 
33
+    /**
34
+     * @param string $expression
35
+     * @param \PHPUnit\Framework\MockObject\Matcher\InvokedCount $expects
36
+     */
33 37
     protected function assertExpressionCompile($expression, $with, array $expressionValues = [], $expects = null, $return = true, $assertMethod = 'assertTrue')
34 38
     {
35 39
         $expressionValues['container'] = $this->getDIContainerMock(['security.authorization_checker' => $this->getAuthorizationCheckerIsGrantedWithExpectation($with, $expects, $return)]);
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.