for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Slides\Saml2\Facades;
use Illuminate\Support\Facades\Facade;
/**
* Class Saml2Auth
*
* @method static \Slides\Saml2\Models\Tenant|null getTenant()
* @package Slides\Saml2\Facades
*/
class Auth extends Facade
{
* Get the registered name of the component.
* @return string
protected static function getFacadeAccessor()
return 'Slides\Saml2\Auth';
}