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()];
 }