aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/account/src/Facades/Password.php
blob: ec300d3c133bbb8da56f3c1ca74e5585d7dd30b7 (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';
    }
}