mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-04 19:34:04 +00:00
Add docblock to command, improve description and output messages
This commit is contained in:
parent
8619f18830
commit
d2f55e620c
1 changed files with 7 additions and 2 deletions
|
|
@ -8,6 +8,11 @@ use Illuminate\Console\Command;
|
|||
use Stancl\Tenancy\Features\UserImpersonation;
|
||||
|
||||
/**
|
||||
* This command clears expired impersonation tokens.
|
||||
* By default, all tokens older than UserImpersonation::$ttl (60 seconds by default)
|
||||
* are deleted. To override this, you can use the --ttl option, for example
|
||||
* --ttl=120, all tokens older than 120 seconds will be deleted, ignoring the default.
|
||||
*
|
||||
* @see Stancl\Tenancy\Features\UserImpersonation
|
||||
*/
|
||||
class ClearExpiredImpersonationTokens extends Command
|
||||
|
|
@ -15,11 +20,11 @@ class ClearExpiredImpersonationTokens extends Command
|
|||
protected $signature = 'tenants:clear-expired-impersonation-tokens
|
||||
{--ttl= : TTL in seconds for impersonation tokens (default is UserImpersonation::$ttl)}';
|
||||
|
||||
protected $description = 'Remove expired impersonation tokens.';
|
||||
protected $description = 'Clear expired impersonation tokens.';
|
||||
|
||||
public function handle(): int
|
||||
{
|
||||
$this->components->info('Removing expired impersonation tokens.');
|
||||
$this->components->info('Deleting expired impersonation tokens.');
|
||||
|
||||
$ttl = (int) $this->option('ttl') ?: UserImpersonation::$ttl;
|
||||
$expirationDate = now()->subSeconds($ttl);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue