Parcourir la source

DateComponent : ajout getTotalMinutes

develop
Guillaume il y a 2 ans
Parent
révision
be3562b49d
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. +5
    -0
      Component/DateComponent.php

+ 5
- 0
Component/DateComponent.php Voir le fichier

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

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

}

Chargement…
Annuler
Enregistrer