<?php




namespace ln\interfaces;


interface JobInterface
{
    public function fire($job, $data);

    public function failed($data);
}