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

15 lines
248 B
PHP
Executable File

<?php
namespace Illuminate\Contracts\Auth;
interface PasswordBrokerFactory
{
/**
* Get a password broker instance by name.
*
* @param string|null $name
* @return mixed
*/
public function broker($name = null);
}