Files
pancake/system/vendor/illuminate/contracts/Auth/Factory.php
Tim Bendt 6b9ef7ca55 first
2025-11-25 00:16:35 -05:00

23 lines
457 B
PHP
Executable File

<?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);
}