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 — annotations (#404)
by Vincent
19:31
created
src/Annotation/Description.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Overblog\GraphQLBundle\Annotation;
6 6
 
Please login to merge, or discard this patch.
src/Annotation/InputType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Overblog\GraphQLBundle\Annotation;
6 6
 
Please login to merge, or discard this patch.
src/Annotation/Deprecated.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Overblog\GraphQLBundle\Annotation;
6 6
 
Please login to merge, or discard this patch.
src/Annotation/Access.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Overblog\GraphQLBundle\Annotation;
6 6
 
Please login to merge, or discard this patch.
src/Annotation/Scalar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Overblog\GraphQLBundle\Annotation;
6 6
 
Please login to merge, or discard this patch.
src/Annotation/Field.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Overblog\GraphQLBundle\Annotation;
6 6
 
Please login to merge, or discard this patch.
src/Annotation/Union.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Overblog\GraphQLBundle\Annotation;
6 6
 
Please login to merge, or discard this patch.
src/Annotation/TypeInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Overblog\GraphQLBundle\Annotation;
6 6
 
Please login to merge, or discard this patch.
src/ExpressionLanguage/ExpressionFunction/GraphQL/ValueResolver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Overblog\GraphQLBundle\ExpressionLanguage\ExpressionFunction\GraphQL;
6 6
 
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
         parent::__construct(
14 14
             $name,
15 15
             function ($args = '[]', $method = null) {
16
-                return \sprintf('call_user_func_array([$value, %s], array_values(%s));', $method ? : '$info->fieldName', $args);
16
+                return \sprintf('call_user_func_array([$value, %s], array_values(%s));', $method ?: '$info->fieldName', $args);
17 17
             }
18 18
         );
19 19
     }
Please login to merge, or discard this patch.