DateTimeTrait.php
344 Bytes
<?php
namespace App\Traits;
use DateTimeInterface;
trait DateTimeTrait
{
/**
* 为数组/JSON 序列化准备日期。
*
* @param DateTimeInterface $date
* @return string
*/
protected function serializeDate(DateTimeInterface $date): string
{
return $date->format($this->getDateFormat());
}
}