Passed
Pull Request — master (#297)
by
unknown
18:44
created
src/DependencyInjection/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
             ->validate()
60 60
                 ->always()
61
-                ->then(function ($v) {
61
+                ->then(function($v) {
62 62
                     if (!\array_key_exists('doctrine', $v)) {
63 63
                         $v['doctrine'] = [];
64 64
                     }
Please login to merge, or discard this patch.
rector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 use Rector\Symfony\Set\SymfonySetList;
12 12
 use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
13 13
 
14
-return static function (ContainerConfigurator $containerConfigurator): void {
14
+return static function(ContainerConfigurator $containerConfigurator): void {
15 15
     $services = $containerConfigurator->services();
16 16
     $services->set(TypedPropertyRector::class);
17 17
 
Please login to merge, or discard this patch.
src/Controller/ViewerController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
                 $audited,
44 44
                 array_filter(
45 45
                     $schemaManager->getAuditableTableNames($auditingService->getEntityManager()),
46
-                    static function ($entity) use ($reader, $scope) {
46
+                    static function($entity) use ($reader, $scope) {
47 47
                         $roleChecker = $reader->getProvider()->getAuditor()->getConfiguration()->getRoleChecker();
48 48
 
49 49
                         return null === $roleChecker ? true : $roleChecker($entity, $scope);
Please login to merge, or discard this patch.
src/User/UserProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
             return null;
61 61
         }
62 62
 
63
-        return new User((string)$identifier, $username);
63
+        return new User((string) $identifier, $username);
64 64
     }
65 65
 
66 66
     private function getTokenUser(): ?UserInterface
Please login to merge, or discard this patch.