Переглянути джерело

DateComponent : ajout getTotalMinutes

develop
Guillaume 2 роки тому
джерело
коміт
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');
}

}

Завантаження…
Відмінити
Зберегти