igfs/vendor/illuminate/contracts/Auth/PasswordBrokerFactory.php

15 lines
248 B
PHP
Raw Normal View History

2024-07-03 14:41:15 +03:00
<?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);
}