Passed
Push — main ( 4f2490...bd03c4 )
by De Cramer
03:58
created
Twig/TimeIntervalExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         $hour = str_pad(floor($time / 60 / 60), 1, '0');
24 24
 
25 25
         $formattedPieces = [];
26
-        if ($time > (60*60)) {
26
+        if ($time > (60 * 60)) {
27 27
             $formattedPieces[] = $hour . "h";
28 28
         }
29 29
         if ($time > (60)) {
Please login to merge, or discard this patch.
EventSubscriber/EtlExecutionEventSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * @param ChainProcessorsManager $chainProcessorManager
29 29
      * @param MessageBusInterface $messageBus
30 30
      */
31
-    public function __construct(EntityManagerInterface $em, ChainProcessorsManager $chainProcessorManager, ?MessageBusInterface $messageBus =null)
31
+    public function __construct(EntityManagerInterface $em, ChainProcessorsManager $chainProcessorManager, ?MessageBusInterface $messageBus = null)
32 32
     {
33 33
         $this->em = $em;
34 34
         $this->chainProcessorManager = $chainProcessorManager;
Please login to merge, or discard this patch.