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
Push — master ( f25f1b...4e8d52 )
by Jérémiah
48s
created
ExpressionLanguage/ExpressionFunction/Security/IsAnonymous.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         parent::__construct(
21 21
             $name,
22
-            function () {
22
+            function() {
23 23
                 return '$container->get(\'security.authorization_checker\')->isGranted(\'IS_AUTHENTICATED_ANONYMOUSLY\')';
24 24
             }
25 25
         );
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/NewObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         parent::__construct(
21 21
             $name,
22
-            function ($className, $args = '[]') {
22
+            function($className, $args = '[]') {
23 23
                 return sprintf('(new \ReflectionClass(%s))->newInstanceArgs(%s)', $className, $args);
24 24
             }
25 25
         );
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/DependencyInjection/Service.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         parent::__construct(
21 21
             $name,
22
-            function ($value) {
22
+            function($value) {
23 23
                 return sprintf('$container->get(%s)', $value);
24 24
             }
25 25
         );
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/DependencyInjection/Parameter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         parent::__construct(
21 21
             $name,
22
-            function ($value) {
22
+            function($value) {
23 23
                 return sprintf('$container->getParameter(%s)', $value);
24 24
             }
25 25
         );
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/GraphQL/Mutation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         parent::__construct(
21 21
             $name,
22
-            function ($alias, $args = '[]') {
22
+            function($alias, $args = '[]') {
23 23
                 return sprintf('$container->get(\'overblog_graphql.mutation_resolver\')->resolve([%s, %s])', $alias, $args);
24 24
             }
25 25
         );
Please login to merge, or discard this patch.
ExpressionFunction/GraphQL/Relay/MutateAndGetPayloadCallback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         parent::__construct(
22 22
             $name,
23
-            function ($mutateAndGetPayload) {
23
+            function($mutateAndGetPayload) {
24 24
                 $code = 'function ($value) use ('.TypeGenerator::USE_FOR_CLOSURES.', $args, $context, $info) { ';
25 25
                 $code .= 'return '.$mutateAndGetPayload.'; }';
26 26
 
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/GraphQL/Relay/FromGlobalID.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         parent::__construct(
21 21
             $name,
22
-            function ($globalId) {
22
+            function($globalId) {
23 23
                 return sprintf(
24 24
                     '%s::fromGlobalId(%s)',
25 25
                     \Overblog\GraphQLBundle\Relay\Node\GlobalId::class,
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/GraphQL/Relay/GlobalID.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         parent::__construct(
21 21
             $name,
22
-            function ($id, $typeName = null) {
22
+            function($id, $typeName = null) {
23 23
                 $typeNameEmpty = null === $typeName || '""' === $typeName || 'null' === $typeName || 'false' === $typeName;
24 24
 
25 25
                 return sprintf(
Please login to merge, or discard this patch.
ExpressionFunction/GraphQL/Relay/ResolveSingleInputCallback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         parent::__construct(
22 22
             $name,
23
-            function ($resolveSingleInput) {
23
+            function($resolveSingleInput) {
24 24
                 $code = 'function ($value) use ('.TypeGenerator::USE_FOR_CLOSURES.', $args, $context, $info) { ';
25 25
                 $code .= 'return '.$resolveSingleInput.'; }';
26 26
 
Please login to merge, or discard this patch.