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
311 B

  1. <?php namespace Sensory5\Shortcode\Classes;
  2. use Illuminate\Support\Facades\Facade;
  3. class ShortcodeFacade extends Facade
  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. }