mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
10 lines
206 B
PHP
10 lines
206 B
PHP
<?php
|
|
|
|
namespace Gazelle\Task;
|
|
|
|
class UpdateWeeklyTop10 extends \Gazelle\Task {
|
|
public function run(): void {
|
|
$this->processed = new \Gazelle\Manager\Torrent()->storeTop10('Weekly', 7);
|
|
}
|
|
}
|