Files
money/vendor/illuminate/contracts/Auth/Factory.php
2023-06-16 02:08:47 +00:00

23 lines
389 B
PHP

<?php
namespace Illuminate\Contracts\Auth;
interface Factory
{
/**
* Get a guard instance by name.
*
* @param string|null $name
* @return mixed
*/
public function guard($name = null);
/**
* Set the default guard the factory should serve.
*
* @param string $name
* @return void
*/
public function shouldUse($name);
}