beautify code

This commit is contained in:
2024-11-12 23:00:03 +05:00
parent c4a2a947e2
commit 582c5dada5
10 changed files with 123 additions and 51 deletions

View File

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