Passed
Push — feature/timeline-profile-page ( b6c64d...749ad5 )
by Tristan
10:59 queued 04:25
created

JobApplicationStep::touched_application_steps()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace App\Models\Lookup;
4
5
use App\Models\BaseModel;
6
7
/**
8
 * Class Step
9
 *
10
 * @property int $id
11
 * @property int $name
12
 * @property \Jenssegers\Date\Date $created_at
13
 * @property \Jenssegers\Date\Date $updated_at
14
 *
15
 * @property \Illuminate\Database\Eloquent\Collection $touched_application_steps
16
 */
17
class JobApplicationStep extends BaseModel
18
{
19
    public function touched_application_steps() //phpcs:ignore
20
    {
21
        return $this->hasMany(\App\Models\Lookup\TouchedApplicationStep::class);
22
    }
23
}
24