Refactoring names

This commit is contained in:
Patrick Ward
2015-10-23 15:34:31 -04:00
parent 88118e8a4c
commit 61620bdcf1
4 changed files with 23 additions and 39 deletions

17
classes/Facade.php Normal file
View File

@ -0,0 +1,17 @@
<?php namespace Sensory5\Shortcode\Classes;
use October\Rain\Support\Facade as FacadeParent;
class Facade extends FacadeParent
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'shortcode';
}
}