<?php
namespace crmeb\interfaces;
interface JobInterface
{
public function fire($job, $data);
public function failed($data);
}