Просмотр исходного кода

DateComponent : ajout getTotalMinutes

develop
Guillaume 2 лет назад
Родитель
Сommit
be3562b49d
1 измененных файлов: 5 добавлений и 0 удалений
  1. +5
    -0
      Component/DateComponent.php

+ 5
- 0
Component/DateComponent.php Просмотреть файл

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

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

}

Загрузка…
Отмена
Сохранить