1 | <?php |
||
9 | class DocumentJobController extends Controller |
||
10 | { |
||
11 | /** @var \Sausin\Signere\DocumentJob */ |
||
12 | protected $dj; |
||
13 | |||
14 | /** |
||
15 | * Create a new controller instance. |
||
16 | * |
||
17 | * @param \Sausin\Signere\DocumentJob $dj |
||
18 | */ |
||
19 | 3 | public function __construct(DocumentJob $dj) |
|
25 | |||
26 | /** |
||
27 | * Retrieves a document job in the form of a response |
||
28 | * object containing the document job parameters. |
||
29 | * |
||
30 | * @param string $jobId |
||
31 | * @return \Illuminate\Http\Response |
||
32 | */ |
||
33 | 1 | public function show(string $jobId) |
|
39 | |||
40 | /** |
||
41 | * Retrieves a document job in the form of a response |
||
42 | * object containing the document job parameters. |
||
43 | * |
||
44 | * @param Request $request |
||
45 | * @return \Illuminate\Http\Response |
||
46 | */ |
||
47 | 2 | public function store(Request $request) |
|
90 | } |
||
91 |