Initial shortcode implementation
This commit is contained in:
17
classes/ShortcodeFacade.php
Normal file
17
classes/ShortcodeFacade.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php namespace Sensory5\Shortcode\Classes;
|
||||
|
||||
use Illuminate\Support\Facades\Facade;
|
||||
|
||||
class ShortcodeFacade extends Facade
|
||||
{
|
||||
/**
|
||||
* Get the registered name of the component.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected static function getFacadeAccessor()
|
||||
{
|
||||
return 'shortcode';
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user