浏览代码

Correctif DateComponent

develop
Guillaume 3 年前
父节点
当前提交
25b7949a4a
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. +14
    -0
      Component/DateComponent.php

+ 14
- 0
Component/DateComponent.php 查看文件

@@ -52,4 +52,18 @@ class DateComponent
return '';
}

// getDeliverySlotHour
public function getHour(\DateTime $date)
{
$timestamp = $date->getTimestamp() ;
$hour = $this->date('%kh', $timestamp) ;
$minutes = $this->date('%M', $timestamp) ;

if($minutes != '00') {
$hour .= $minutes ;
}

return $hour ;
}

}

正在加载...
取消
保存