Completed
Push — develop ( 4a4198...af86d4 )
by Javier
04:54
created
src/Form/Type/CarbonType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Xgc\CarbonBundle\Form\Type;
5 5
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         $builder
135 135
             ->addViewTransformer(new DataTransformerChain([
136 136
                 new CarbonToArrayTransformer($options['model_timezone'], $options['view_timezone'], $this->parts),
137
-                new ArrayToPartsTransformer(['date' => $this->dateParts, 'time' => $this->timeParts,]),
137
+                new ArrayToPartsTransformer(['date' => $this->dateParts, 'time' => $this->timeParts, ]),
138 138
             ]))
139 139
             ->add('date', DateType::class, $dateOptions)
140 140
             ->add('time', TimeType::class, $timeOptions);
Please login to merge, or discard this patch.