コード例 #1
0
ファイル: User.php プロジェクト: Qiang1234/core
 /**
  * Format a string of post content using the set formatter.
  *
  * @param  string  $content
  * @return string
  */
 protected static function formatBio($content)
 {
     return static::$formatter->format($content);
 }
コード例 #2
0
ファイル: CommentPost.php プロジェクト: Qiang1234/core
 /**
  * Format a string of post content using the set formatter.
  *
  * @param  string  $content
  * @return string
  */
 protected static function formatContent($post)
 {
     return static::$formatter->format($post->content, $post);
 }