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
Push — master ( 8a440c...e7159f )
by Timur
27s queued 11s
created
src/ExpressionLanguage/ExpressionFunction/GraphQL/Relay/FromGlobalID.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
     {
15 15
         parent::__construct(
16 16
             'fromGlobalId',
17
-            static fn ($globalId) => sprintf('\%s::fromGlobalId(%s)', GlobalIdHelper::class, $globalId),
18
-            static fn ($_, $globalId) => GlobalIdHelper::fromGlobalId($globalId)
17
+            static fn($globalId) => sprintf('\%s::fromGlobalId(%s)', GlobalIdHelper::class, $globalId),
18
+            static fn($_, $globalId) => GlobalIdHelper::fromGlobalId($globalId)
19 19
         );
20 20
     }
21 21
 }
Please login to merge, or discard this patch.
src/ExpressionLanguage/ExpressionFunction/GraphQL/IsTypeOf.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
     {
13 13
         parent::__construct(
14 14
             'isTypeOf',
15
-            static fn ($className) => "((\$className = $className) && \$value instanceof \$className)",
16
-            static fn ($arguments, $className) => $className && $arguments['parentValue'] instanceof $className
15
+            static fn($className) => "((\$className = $className) && \$value instanceof \$className)",
16
+            static fn($arguments, $className) => $className && $arguments['parentValue'] instanceof $className
17 17
         );
18 18
     }
19 19
 }
Please login to merge, or discard this patch.
src/ExpressionLanguage/ExpressionFunction/Call.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
     {
13 13
         parent::__construct(
14 14
             'call',
15
-            fn (string $target, string $args = '[]') => "$target(...$args)",
16
-            fn ($_, callable $target, array $args) => $target(...$args)
15
+            fn(string $target, string $args = '[]') => "$target(...$args)",
16
+            fn($_, callable $target, array $args) => $target(...$args)
17 17
         );
18 18
     }
19 19
 }
Please login to merge, or discard this patch.
src/Definition/Builder/SchemaBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
     public function getBuilder(string $name, ?string $queryAlias, ?string $mutationAlias = null, ?string $subscriptionAlias = null, array $types = []): Closure
26 26
     {
27
-        return function () use ($name, $queryAlias, $mutationAlias, $subscriptionAlias, $types): ExtensibleSchema {
27
+        return function () use ($name, $queryAlias, $mutationAlias, $subscriptionAlias, $types) : ExtensibleSchema {
28 28
             static $schema = null;
29 29
             if (null === $schema) {
30 30
                 $schema = $this->create($name, $queryAlias, $mutationAlias, $subscriptionAlias, $types);
Please login to merge, or discard this patch.
src/Security/Security.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     {
51 51
         return array_reduce(
52 52
             $permissions,
53
-            fn ($isGranted, $permission) => $isGranted || $this->isGranted($permission, $object),
53
+            fn($isGranted, $permission) => $isGranted || $this->isGranted($permission, $object),
54 54
             false
55 55
         );
56 56
     }
Please login to merge, or discard this patch.
src/Config/EnumTypeDefinition.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
                 ->arrayNode('values')
22 22
                     ->useAttributeAsKey('name')
23 23
                     ->beforeNormalization()
24
-                        ->ifTrue(fn ($v) => is_array($v))
24
+                        ->ifTrue(fn($v) => is_array($v))
25 25
                         ->then(function ($v) {
26 26
                             foreach ($v as $name => &$options) {
27 27
                                 // short syntax NAME: VALUE
Please login to merge, or discard this patch.
src/Config/ObjectTypeDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     private function treatFieldsDefaultPublic(ArrayNodeDefinition $node): void
69 69
     {
70 70
         $node->validate()
71
-            ->ifTrue(fn ($v) => array_key_exists('fieldsDefaultPublic', $v) && null !== $v['fieldsDefaultPublic'])
71
+            ->ifTrue(fn($v) => array_key_exists('fieldsDefaultPublic', $v) && null !== $v['fieldsDefaultPublic'])
72 72
             ->then(function ($v) {
73 73
                 foreach ($v['fields'] as &$field) {
74 74
                     if (array_key_exists('public', $field) && null !== $field['public']) {
Please login to merge, or discard this patch.
src/Config/TypeWithOutputFieldsDefinition.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
         $prototype
23 23
             ->beforeNormalization()
24 24
                 // Allow field type short syntax (Field: Type => Field: {type: Type})
25
-                ->ifTrue(fn ($options) => is_string($options))
26
-                ->then(fn ($options) => ['type' => $options])
25
+                ->ifTrue(fn($options) => is_string($options))
26
+                ->then(fn($options) => ['type' => $options])
27 27
             ->end()
28 28
             ->validate()
29 29
                 // Remove empty entries
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
                     ->prototype('array')
57 57
                         // Allow arg type short syntax (Arg: Type => Arg: {type: Type})
58 58
                         ->beforeNormalization()
59
-                            ->ifTrue(fn ($options) => is_string($options))
60
-                            ->then(fn ($options) => ['type' => $options])
59
+                            ->ifTrue(fn($options) => is_string($options))
60
+                            ->then(fn($options) => ['type' => $options])
61 61
                         ->end()
62 62
                         ->children()
63 63
                             ->append($this->typeSection(true))
Please login to merge, or discard this patch.
src/Config/TypeDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
         $node
49 49
             ->isRequired()
50 50
             ->validate()
51
-                ->ifTrue(fn ($name) => !preg_match('/^[_a-z][_0-9a-z]*$/i', $name))
51
+                ->ifTrue(fn($name) => !preg_match('/^[_a-z][_0-9a-z]*$/i', $name))
52 52
                 ->thenInvalid('Invalid type name "%s". (see http://spec.graphql.org/June2018/#sec-Names)')
53 53
             ->end()
54 54
         ;
Please login to merge, or discard this patch.