mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
4231473bfd
PHP 5.5.9 adds the new static `class` property which provides the fully qualified class name. This is preferred over using strings for class names since the `class` property references are checked by PHP.
30 lines
858 B
PHP
30 lines
858 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Invitation Expiration Default
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Default Expiry time in Hours from current time.
|
|
| i.e now() + expires (hours)
|
|
|
|
|
*/
|
|
'expires' => 48,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| User Model
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
'UserModel' => App\Models\User::class,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Invitation Model
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
'InvitationModel' => 'Junaidnasir\Larainvite\Models\LaraInviteModel',
|
|
];
|