HighSpeaker/vendor/illuminate/contracts/Auth/Factory.php

23 lines
457 B
PHP
Raw Permalink Normal View History

2022-12-24 19:40:40 +05:30
<?php
namespace Illuminate\Contracts\Auth;
interface Factory
{
/**
* Get a guard instance by name.
*
* @param string|null $name
* @return \Illuminate\Contracts\Auth\Guard|\Illuminate\Contracts\Auth\StatefulGuard
*/
public function guard($name = null);
/**
* Set the default guard the factory should serve.
*
* @param string $name
* @return void
*/
public function shouldUse($name);
}