Completed
Pull Request — master (#90)
by Arnaud
16:16
created
src/LAG/AdminBundle/Action/Responder/ResponderTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      */
21 21
     public function render($template, array $context = [])
22 22
     {
23
-        $content =  $this
23
+        $content = $this
24 24
             ->twig
25 25
             ->render($template, $context)
26 26
         ;
Please login to merge, or discard this patch.
src/LAG/AdminBundle/Form/Type/ListItemType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@
 block discarded – undo
13 13
     {
14 14
         $builder
15 15
             ->add('id', CheckboxType::class)
16
-            ->addModelTransformer(new CallbackTransformer(function ($value) {
16
+            ->addModelTransformer(new CallbackTransformer(function($value) {
17 17
                 return $value->getId();
18 18
                 var_dump($value);
19 19
                 die;
20
-            }, function () {
20
+            }, function() {
21 21
                 
22 22
             }))
23 23
         ;
Please login to merge, or discard this patch.
src/LAG/AdminBundle/Field/Field/ActionCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         $resolver
58 58
             ->setRequired('actions')
59 59
             ->setAllowedTypes('actions', 'array')
60
-            ->setNormalizer('actions', function (Options $options, $actions) {
60
+            ->setNormalizer('actions', function(Options $options, $actions) {
61 61
     
62 62
                 $normalizedActions = [];
63 63
                 
Please login to merge, or discard this patch.