getHumanCreatedAt() 공개 메소드

public getHumanCreatedAt ( ) : boolean | string
리턴 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()];
 }