Ver código fonte

DateComponent : ajout getTotalMinutes

develop
Guillaume 2 anos atrás
pai
commit
be3562b49d
1 arquivos alterados com 5 adições e 0 exclusões
  1. +5
    -0
      Component/DateComponent.php

+ 5
- 0
Component/DateComponent.php Ver arquivo

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

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

}

Carregando…
Cancelar
Salvar