You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
318 B

  1. <?php namespace Sensory5\Shortcode\Classes;
  2. use October\Rain\Support\Facade as FacadeParent;
  3. class Facade extends FacadeParent
  4. {
  5. /**
  6. * Get the registered name of the component.
  7. *
  8. * @return string
  9. */
  10. protected static function getFacadeAccessor()
  11. {
  12. return 'shortcode';
  13. }
  14. }