mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-17 03:04:47 -05:00
14 lines
334 B
PHP
14 lines
334 B
PHP
<?php
|
|
|
|
namespace Gazelle\Task;
|
|
|
|
class UploadNotifier extends \Gazelle\Task {
|
|
public function run(): void {
|
|
$this->processed = new \Gazelle\Manager\Notification()
|
|
->processBacklog(
|
|
new \Gazelle\Manager\NotificationTicket(),
|
|
new \Gazelle\Manager\Torrent(),
|
|
);
|
|
}
|
|
}
|