Total Complexity | 5 |
Total Lines | 59 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class JobBuilderController extends Controller |
||
9 | { |
||
10 | /** |
||
1 ignored issue
–
show
|
|||
11 | * Show the Job Builder Intro page |
||
12 | * @return \Illuminate\Http\Response |
||
13 | */ |
||
14 | public function intro($jobId = null) |
||
15 | { |
||
16 | return view( |
||
17 | 'manager/job-builder-intro', |
||
18 | ['title' => Lang::get('manager/job_builder.intro_title'), 'jobId' => $jobId] |
||
19 | ); |
||
20 | } |
||
21 | |||
22 | /** |
||
1 ignored issue
–
show
|
|||
23 | * Show the Job Builder Details page |
||
24 | * @return \Illuminate\Http\Response |
||
25 | */ |
||
26 | public function details($jobId = null) |
||
31 | ); |
||
32 | } |
||
33 | |||
34 | /** |
||
1 ignored issue
–
show
|
|||
35 | * Show the Job Builder Work Environment page |
||
36 | * @return \Illuminate\Http\Response |
||
37 | */ |
||
38 | public function environment($jobId = null) |
||
43 | ); |
||
44 | } |
||
45 | |||
46 | /** |
||
1 ignored issue
–
show
|
|||
47 | * Show the Job Builder Impact page |
||
48 | * @return \Illuminate\Http\Response |
||
49 | */ |
||
50 | public function impact($jobId = null) |
||
55 | ); |
||
56 | } |
||
57 | |||
58 | /** |
||
1 ignored issue
–
show
|
|||
59 | * Show the Job Builder Tasks page |
||
60 | * @return \Illuminate\Http\Response |
||
61 | */ |
||
62 | public function tasks($jobId) |
||
70 |