mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-09-24 07:12:59 -04:00
10 lines
145 B
PHP
10 lines
145 B
PHP
<?php
|
|
|
|
namespace Gazelle\Task;
|
|
|
|
class Peerupdate extends \Gazelle\Task {
|
|
public function run(): void {
|
|
$this->processed = 0;
|
|
}
|
|
}
|