14 lines
244 B
PHP
14 lines
244 B
PHP
<?php
|
|
|
|
namespace App\Support;
|
|
|
|
use cPad\Plugins\Forum\Services\ForumContentRenderer;
|
|
|
|
class ForumPostContent
|
|
{
|
|
public static function render(?string $raw): string
|
|
{
|
|
return app(ForumContentRenderer::class)->render($raw);
|
|
}
|
|
}
|