Passed
Push — feature/job-builder/step-1-red... ( 055b15...9b60e9 )
by Tristan
19:40 queued 11:06
created

JobBuilderController::details()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 5
ccs 0
cts 4
cp 0
rs 10
cc 1
nc 1
nop 1
crap 2
1
<?php
2
3
namespace App\Http\Controllers;
4
5
use Illuminate\Support\Facades\Lang;
6
use App\Http\Controllers\Controller;
7
8
class JobBuilderController extends Controller
9
{
10
    /**
1 ignored issue
show
Coding Style Documentation introduced by
Doc comment for parameter "$jobId" missing
Loading history...
11
     * Show the Job Builder Details page
12
     * @return \Illuminate\Http\Response
13
     */
14
    public function details($jobId)
15
    {
16
        return view(
17
            'manager/job-builder-details',
18
            ['title' => 'Job Builder: Details', 'jobId' => $jobId]
19
        );
20
    }
21
}
22