mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-13 07:00:08 +01:00
18 lines
330 B
PHP
18 lines
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';
|
||
|
}
|
||
|
}
|