Guest User

Untitled

a guest
Jun 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2.  
  3. namespace LMillucci\CivicSIP\Facades;
  4.  
  5. use Illuminate\Support\Facades\Facade;
  6.  
  7. /**
  8. * @method static \Blockvis\Civic\Sip\Client exchangeToken(string $jwtToken)
  9. *
  10. * @see \Blockvis\Civic\Sip\Client
  11. */
  12. class CivicFacade extends Facade
  13. {
  14. /**
  15. * Get the registered name of the component.
  16. *
  17. * @return string
  18. */
  19. protected static function getFacadeAccessor() {
  20. return 'civic';
  21. }
  22. }
Add Comment
Please, Sign In to add comment