ponepaste/includes/Parsedown/Facades/BeamParsedown.php
aftercase 5b2e3d5177 Initial commit
Initial commit
2021-07-10 19:18:17 +01:00

18 lines
No EOL
330 B
PHP

<?php
namespace ArdiSSoebrata\BeamParsedown\Facades;
use Illuminate\Support\Facades\Facade;
class BeamParsedown extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor(): string
{
return 'beam-parsedown';
}
}