Files
telekeci/app/Modules/Excell/Excell.php
2024-11-12 23:00:03 +05:00

17 lines
255 B
PHP

<?php
namespace App\Modules\Excell;
use App\Modules\Excell\Types\iRichText\RichTextWrapper;
class Excell
{
/**
* RichText wrapper
*/
public static function richText(): RichTextWrapper
{
return new RichTextWrapper;
}
}