Completed
Push — master ( 9c4a11...131c91 )
by Kévin
06:24 queued 02:30
created
src/Security/ExpressionLanguage.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 /*
14 14
  * This file is part of the API Platform project.
15 15
  *
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
37 37
     {
38 38
         parent::registerFunctions();
39 39
 
40
-        $this->register('is_granted', function ($attributes, $object = 'null') {
40
+        $this->register('is_granted', function($attributes, $object = 'null') {
41 41
             return sprintf('$auth_checker->isGranted(%s, %s)', $attributes, $object);
42
-        }, function (array $variables, $attributes, $object = null) {
42
+        }, function(array $variables, $attributes, $object = null) {
43 43
             return $variables['auth_checker']->isGranted($attributes, $object);
44 44
         });
45 45
     }
Please login to merge, or discard this patch.
src/Security/EventListener/DenyAccessListener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace ApiPlatform\Core\Security\EventListener;
15 15
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
             'user' => $token->getUser(),
107 107
             'object' => $request->attributes->get('data'),
108 108
             'request' => $request,
109
-            'roles' => array_map(function ($role) {return $role->getRole(); }, $roles),
109
+            'roles' => array_map(function($role) {return $role->getRole(); }, $roles),
110 110
             'trust_resolver' => $this->authenticationTrustResolver,
111 111
             // needed for the is_granted expression function
112 112
             'auth_checker' => $this->authorizationChecker,
Please login to merge, or discard this patch.
src/Bridge/Doctrine/Orm/Extension/EagerLoadingExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace ApiPlatform\Core\Bridge\Doctrine\Orm\Extension;
15 15
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
      *
125 125
      * @throws RuntimeException when the max number of joins has been reached
126 126
      */
127
-    private function joinRelations(QueryBuilder $queryBuilder, QueryNameGeneratorInterface $queryNameGenerator, string $resourceClass, bool $forceEager, bool $fetchPartial, string $parentAlias, array $propertyMetadataOptions = [], array $context = [], bool $wasLeftJoin = false, int &$joinCount = 0, int $currentDepth = null)
127
+    private function joinRelations(QueryBuilder $queryBuilder, QueryNameGeneratorInterface $queryNameGenerator, string $resourceClass, bool $forceEager, bool $fetchPartial, string $parentAlias, array $propertyMetadataOptions = [], array $context = [], bool $wasLeftJoin = false, int & $joinCount = 0, int $currentDepth = null)
128 128
     {
129 129
         if ($joinCount > $this->maxJoins) {
130 130
             throw new RuntimeException('The total number of joined relations has exceeded the specified maximum. Raise the limit if necessary, or use the "max_depth" option of the Symfony serializer.');
Please login to merge, or discard this patch.