Files
newznab-tmux/config/larainvite.php
T
Shift 4231473bfd Convert string references to ::class
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.
2023-03-30 14:15:02 +00:00

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',
];