Files
SkinbaseNova/app/Support/ForumPostContent.php
2026-03-12 07:22:38 +01:00

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