mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-07-14 02:01:31 -04:00
10 lines
191 B
PHP
10 lines
191 B
PHP
<?php
|
|
|
|
namespace Gazelle\Task;
|
|
|
|
class ExpireInvites extends \Gazelle\Task {
|
|
public function run(): void {
|
|
$this->processed = new \Gazelle\Manager\Invite()->expire($this);
|
|
}
|
|
}
|