getHumanCreatedAt() public method

public getHumanCreatedAt ( ) : boolean | string
return boolean | string
示例#1
0
文件: Indexer.php 项目: phalcon/forum
 protected function createPostArray(Posts $post)
 {
     return ['slug' => "discussion/{$post->id}/{$post->slug}", 'title' => $post->title, 'created' => $post->getHumanCreatedAt()];
 }