| Total Complexity | 7 |
| Total Lines | 85 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 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) |
||
| 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) |
||
| 27 | { |
||
| 28 | return view( |
||
| 29 | 'manager/job-builder-details', |
||
| 30 | ['title' => Lang::get('manager/job_builder.details_title'), 'jobId' => $jobId] |
||
| 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) |
||
| 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) |
||
| 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) |
||
| 67 | ); |
||
| 68 | } |
||
| 69 | |||
| 70 | /** |
||
|
1 ignored issue
–
show
|
|||
| 71 | * Show the Job Builder Skills page |
||
| 72 | * @return \Illuminate\Http\Response |
||
| 73 | */ |
||
| 74 | public function skills($jobId) |
||
| 79 | ); |
||
| 80 | } |
||
| 81 | |||
| 82 | /** |
||
|
1 ignored issue
–
show
|
|||
| 83 | * Show the Job Builder Review page |
||
| 84 | * @return \Illuminate\Http\Response |
||
| 85 | */ |
||
| 86 | public function review($jobId) |
||
| 97 |