mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-12 19:12:49 +00:00
12 lines
135 B
PHP
12 lines
135 B
PHP
<?php
|
|
|
|
|
|
namespace crmeb\interfaces;
|
|
|
|
|
|
use think\queue\Job;
|
|
|
|
interface JobInterface
|
|
{
|
|
public function fire(Job $job, $data): void;
|
|
} |