blob: e5bf9674e7e7a6c419e5fdacf64cb2b1d47a94b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\Sprinkle\Account\Facades;
use UserFrosting\System\Facade;
/**
* Implements facade for the "password" service
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class Password extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'passwordHasher';
}
}
|