Procházet zdrojové kódy

DateComponent : ajout getTotalMinutes

develop
Guillaume před 2 roky
rodič
revize
be3562b49d
1 změnil soubory, kde provedl 5 přidání a 0 odebrání
  1. +5
    -0
      Component/DateComponent.php

+ 5
- 0
Component/DateComponent.php Zobrazit soubor

@@ -70,4 +70,9 @@ class DateComponent
return $hour ;
}

public function getTotalMinutes(\DateTimeInterface $time): int
{
return (int) $time->format('H') * 60 + (int) $time->format('i');
}

}

Načítá se…
Zrušit
Uložit