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
Pull Request — master (#698)
by Jérémiah
24:00
created
src/ExpressionLanguage/ExpressionFunction/Security/HasRole.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
             'hasRole',
15
-            static fn ($role) => "$this->globalVars->get('security')->hasRole($role)",
16
-            static fn (array $arguments, $role) => $arguments['globalVariables']->get('security')->hasRole($role)
15
+            static fn($role) => "$this->globalVars->get('security')->hasRole($role)",
16
+            static fn(array $arguments, $role) => $arguments['globalVariables']->get('security')->hasRole($role)
17 17
         );
18 18
     }
19 19
 }
Please login to merge, or discard this patch.
src/ExpressionLanguage/ExpressionFunction/Security/IsRememberMe.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
             'isRememberMe',
15
-            static fn () => "$this->globalVars->get('security')->isRememberMe()",
16
-            static fn (array $arguments) => $arguments['globalVariables']->get('security')->isRememberMe()
15
+            static fn() => "$this->globalVars->get('security')->isRememberMe()",
16
+            static fn(array $arguments) => $arguments['globalVariables']->get('security')->isRememberMe()
17 17
         );
18 18
     }
19 19
 }
Please login to merge, or discard this patch.
src/ExpressionLanguage/ExpressionFunction/DependencyInjection/Parameter.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
             $name,
15
-            static fn (string $value) => "$this->globalVars->get('container')->getParameter($value)",
16
-            static fn (array $arguments, $paramName) => $arguments['globalVariables']->get('container')->getParameter($paramName)
15
+            static fn(string $value) => "$this->globalVars->get('container')->getParameter($value)",
16
+            static fn(array $arguments, $paramName) => $arguments['globalVariables']->get('container')->getParameter($paramName)
17 17
         );
18 18
     }
19 19
 }
Please login to merge, or discard this patch.
src/ExpressionLanguage/ExpressionFunction/DependencyInjection/Service.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
             $name,
15
-            static fn (string $serviceId) => "$this->globalVars->get('container')->get($serviceId)",
16
-            static fn (array $arguments, $serviceId) => $arguments['globalVariables']->get('container')->get($serviceId)
15
+            static fn(string $serviceId) => "$this->globalVars->get('container')->get($serviceId)",
16
+            static fn(array $arguments, $serviceId) => $arguments['globalVariables']->get('container')->get($serviceId)
17 17
         );
18 18
     }
19 19
 }
Please login to merge, or discard this patch.