mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-17 03:04:47 -05:00
16 lines
370 B
PHP
16 lines
370 B
PHP
<?php
|
|
|
|
namespace Gazelle\Task;
|
|
|
|
class Recovery extends \Gazelle\Task {
|
|
public function run(): void {
|
|
if (RECOVERY) {
|
|
$recovery = new \Gazelle\Manager\Recovery();
|
|
if (RECOVERY_AUTOVALIDATE) {
|
|
$recovery->validatePending();
|
|
}
|
|
$recovery->boostUpload(new \Gazelle\Manager\User());
|
|
}
|
|
}
|
|
}
|