我有一个返回时间戳的方法。我想做这样的事情:
class MyAwesomeService {
/**
* @return array<int, timestamp>
*/
public function myAwesomeMethod(): array
{
return [
1636380000,
1636385555,
1636386666,
];
}
}
但是,我认为不@return array<int, timestamp>
成立。
在文档块中指定时间戳的有效格式是什么?