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

Test Failed
Pull Request — master (#4)
by Jérémiah
12:13
created
Resolver/Resolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
             } else if (is_object($source)) {
22 22
                 $property = $accessor->getValue($source, sprintf('%s', $fieldName));
23 23
             }
24
-        } catch(AccessException $e) {
24
+        } catch (AccessException $e) {
25 25
         }
26 26
 
27 27
         return $property instanceof \Closure ? $property($source) : $property;
Please login to merge, or discard this patch.
Tests/Resolver/ResolverTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
     public function setUp()
32 32
     {
33
-        $this->closureProperty = function () {
33
+        $this->closureProperty = function() {
34 34
             return $this->privatePropertyWithoutGetter;
35 35
         };
36 36
     }
Please login to merge, or discard this patch.