mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-13 07:00:08 +01:00
14 lines
248 B
PHP
14 lines
248 B
PHP
<?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);
|
|
}
|