findComment() public static method

public static findComment ( $id )
Example #1
0
 public function parent(Comment $comment)
 {
     if ($comment->parentId) {
         return DataSource::findComment($comment->parentId);
     }
     return null;
 }