Total Complexity | 7 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class CooldownServiceProvider extends ServiceProvider |
||
12 | { |
||
13 | /** |
||
14 | * Bootstrap the application services. |
||
15 | */ |
||
16 | public function boot() |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Register the application services. |
||
24 | */ |
||
25 | public function register() |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Deletes all expired cooldowns. Only runs once per day. |
||
32 | */ |
||
33 | public function cleanUpExpiredCooldowns() |
||
50 | } |