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 — master (#137)
by Jérémiah
05:30
created
DependencyInjection/Compiler/AutoMappingPass.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -123,6 +123,10 @@
 block discarded – undo
123 123
         }
124 124
     }
125 125
 
126
+    /**
127
+     * @param string|null $className
128
+     * @param boolean $withMethod
129
+     */
126 130
     private function addDefinitionTagsFromAliasesMethod(Definition $definition, $className, $tagName, $withMethod)
127 131
     {
128 132
         // from getAliases
Please login to merge, or discard this 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.
Tests/Functional/App/GraphQL/HelloWord/Type/QueryType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
                     'args' => [
29 29
                         'message' => ['type' => Type::string()],
30 30
                     ],
31
-                    'resolve' => function ($root, $args) use ($resolver) {
31
+                    'resolve' => function($root, $args) use ($resolver) {
32 32
                         return $resolver->resolve([
33 33
                             EchoResolver::class,
34 34
                             [$args['message']],
Please login to merge, or discard this patch.
Tests/Functional/App/GraphQL/HelloWord/Type/MutationType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
                         'x' => ['type' => Type::int()],
29 29
                         'y' => ['type' => Type::int()],
30 30
                     ],
31
-                    'resolve' => function ($root, $args) use ($mutator) {
31
+                    'resolve' => function($root, $args) use ($mutator) {
32 32
                         return $mutator->resolve([
33 33
                             'sum',
34 34
                             [$args['x'], $args['y']],
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.