Completed
Push — develop ( 5c9501...32fbc0 )
by Daniel
06:03
created
src/Validator/Constraints/LinkValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /** @var RouteRepository  */
16 16
     private $routeRepository;
17 17
 
18
-    public function __construct (
18
+    public function __construct(
19 19
         RouteRepository $routeRepository
20 20
     )
21 21
     {
Please login to merge, or discard this patch.
src/Serializer/ApiContextBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
             return $context;
92 92
         }
93 93
         $subject = $request->attributes->get('_api_resource_class');
94
-        $isItem = (bool)$request->attributes->get('_api_item_operation_name');
94
+        $isItem = (bool) $request->attributes->get('_api_item_operation_name');
95 95
         $groups = $this->getGroups($subject, $normalization, $isItem);
96 96
         if (\count($groups)) {
97 97
             $context['groups'] = array_merge($context['groups'] ?? [], ...$groups);
Please login to merge, or discard this patch.