blob: 49c2de9ab4d31658e1f3e3ac52b3874caccc7ab9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?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;
use UserFrosting\System\Sprinkle\Sprinkle;
/**
* Bootstrapper class for the 'account' sprinkle.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class Account extends Sprinkle
{
}
|