ponepaste/includes/Parsedown/Facades/BeamParsedown.php

16 lines
327 B
PHP
Raw Normal View History

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