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
DependencyInjection/Compiler/AutoMappingPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             $bundles = $container->getParameter('kernel.bundles');
41 41
             $directories = array_merge(
42 42
                 array_map(
43
-                    function ($class) {
43
+                    function($class) {
44 44
                         $bundle = new \ReflectionClass($class);
45 45
                         $bundleDir = dirname($bundle->getFileName());
46 46
 
Please login to merge, or discard this patch.
DependencyInjection/Compiler/TaggedServiceMappingPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
             $solutionDefinition = $container->findDefinition($options['id']);
65 65
 
66 66
             $methods = array_map(
67
-                function ($methodCall) {
67
+                function($methodCall) {
68 68
                     return $methodCall[0];
69 69
                 },
70 70
                 $solutionDefinition->getMethodCalls()
Please login to merge, or discard this patch.
DependencyInjection/OverblogGraphQLTypesExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,8 +69,8 @@
 block discarded – undo
69 69
 
70 70
         // from config
71 71
         $typesMappings = array_filter(array_map(
72
-            function (array $typeMapping) use ($container) {
73
-                $params = $this->detectFilesByType($container, $typeMapping['dir'],  $typeMapping['type']);
72
+            function(array $typeMapping) use ($container) {
73
+                $params = $this->detectFilesByType($container, $typeMapping['dir'], $typeMapping['type']);
74 74
 
75 75
                 return $params;
76 76
             },
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/Security/HasRole.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 ($role) {
22
+            function($role) {
23 23
                 return sprintf('$container->get(\'security.authorization_checker\')->isGranted(%s)', $role);
24 24
             }
25 25
         );
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/Security/HasAnyPermission.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 ($object, $permissions) {
22
+            function($object, $permissions) {
23 23
                 $code = sprintf('array_reduce(%s, function ($isGranted, $permission) use ($container, $object) { return $isGranted || $container->get(\'security.authorization_checker\')->isGranted($permission, %s); }, false)', $permissions, $object);
24 24
 
25 25
                 return $code;
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/Security/IsFullyAuthenticated.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_FULLY\')';
24 24
             }
25 25
         );
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/Security/HasPermission.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 ($object, $permission) {
22
+            function($object, $permission) {
23 23
                 $code = sprintf('$container->get(\'security.authorization_checker\')->isGranted(%s, %s)', $permission, $object);
24 24
 
25 25
                 return $code;
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/Security/HasAnyRole.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 ($roles) {
22
+            function($roles) {
23 23
                 $code = sprintf('array_reduce(%s, function ($isGranted, $role) use ($container) { return $isGranted || $container->get(\'security.authorization_checker\')->isGranted($role); }, false)', $roles);
24 24
 
25 25
                 return $code;
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/Security/IsAuthenticated.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_REMEMBERED\') || $container->get(\'security.authorization_checker\')->isGranted(\'IS_AUTHENTICATED_FULLY\')';
24 24
             }
25 25
         );
Please login to merge, or discard this patch.