epiphany/date-factory

简单的、可模拟的日期创建工厂

v1.1 2021-03-02 15:19 UTC

This package is auto-updated.

Last update: 2024-09-29 05:01:58 UTC


README

#日期工厂

一个简单、可重用的 DateTime 工厂,可以注入到服务中并轻松模拟。

使用方法

$dateTimeFactory = new DateTimeFactory();
$now = $dateTimeFactory->now();
$then = $dateTimeFactory->now("yesterday");	// accepts any input to \DateTime::__construct()

var_dump([$now,$then]);