Skip to content

Instantly share code, notes, and snippets.

@lmillucci
Created June 23, 2018 08:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lmillucci/dd86f2b6880abc04821f951a83102002 to your computer and use it in GitHub Desktop.
Save lmillucci/dd86f2b6880abc04821f951a83102002 to your computer and use it in GitHub Desktop.
<?php
namespace LMillucci\CivicSIP\Facades;
use Illuminate\Support\Facades\Facade;
/**
* @method static \Blockvis\Civic\Sip\Client exchangeToken(string $jwtToken)
*
* @see \Blockvis\Civic\Sip\Client
*/
class CivicFacade extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor() {
return 'civic';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment