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 (#54)
by Jérémiah
06:46
created
Relay/Connection/Output/ConnectionBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
             $edges,
125 125
             new PageInfo(
126 126
                 $firstEdge instanceof Edge ? $firstEdge->cursor : null,
127
-                $lastEdge instanceof Edge  ? $lastEdge->cursor : null,
127
+                $lastEdge instanceof Edge ? $lastEdge->cursor : null,
128 128
                 $last !== null ? $startOffset > $lowerBound : false,
129 129
                 $first !== null ? $endOffset < $upperBound : false
130 130
             )
Please login to merge, or discard this patch.
Tests/DIContainerMockTrait.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,12 +14,15 @@
 block discarded – undo
14 14
 trait DIContainerMockTrait
15 15
 {
16 16
     /**
17
-     * @param $className
17
+     * @param string $className
18 18
      *
19 19
      * @return \PHPUnit_Framework_MockObject_MockBuilder
20 20
      */
21 21
     abstract public function getMockBuilder($className);
22 22
 
23
+    /**
24
+     * @return null|\Symfony\Component\DependencyInjection\ContainerInterface
25
+     */
23 26
     private function getDIContainerMock(array $services = [], array $parameters = [])
24 27
     {
25 28
         $container = $this->getMockBuilder('Symfony\\Component\\DependencyInjection\\Container')
Please login to merge, or discard this patch.