mirror of
https://github.com/kuaifan/dootask.git
synced 2026-08-11 07:18:36 +00:00
23 lines
361 B
PHP
23 lines
361 B
PHP
<?php
|
|
|
|
namespace App\Tasks;
|
|
|
|
use App\Services\MessageAttachmentBackfillService;
|
|
|
|
class MessageAttachmentBackfillTask extends AbstractTask
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function start()
|
|
{
|
|
MessageAttachmentBackfillService::processAutomatic();
|
|
}
|
|
|
|
public function end()
|
|
{
|
|
}
|
|
}
|