Passed
Push — feature/application-review-ui ( afbf92...be3688 )
by Chris
04:21
created

ExperiencePersonal::experienceTypeName()   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;
4
5
use App\Models\BaseModel;
6
7
/**
8
 * Class ExperiencePersonal
9
 *
10
 * @property int $id
11
 * @property string $title
12
 * @property string $description
13
 * @property boolean $is_shareable
14
 * @property boolean $is_active
15
 * @property \Jenssegers\Date\Date $start_date
16
 * @property \Jenssegers\Date\Date $end_date
17
 * @property int $experienceable_id
18
 * @property string $experienceable_type
19
 * @property boolean $is_education_requirement
20
 * @property \Jenssegers\Date\Date $created_at
21
 * @property \Jenssegers\Date\Date $updated_at
22
 *
23
 * @property \App\Models\Applicant|\App\Models\JobApplication $experienceable
24
 * @property \Illuminate\Database\Eloquent\Collection $skills
25
 * @property \Illuminate\Database\Eloquent\Collection $experience_skills
26
 *
27
 * @method string experienceTypeName
28
 */
29
class ExperiencePersonal extends BaseModel
30
{
31
    protected $casts = [
32
        'title' => 'string',
33
        'description' => 'string',
34
        'is_shareable' => 'boolean',
35
        'is_active' => 'boolean',
36
        'start_date' => 'date',
37
        'end_date' => 'date',
38
        'is_education_requirement' => 'boolean'
39
    ];
40
41
    protected $fillable = [
42
        'title',
43
        'description',
44
        'is_shareable',
45
        'is_active',
46
        'start_date',
47
        'end_date',
48
        'is_education_requirement'
49
    ];
50
51
    protected $table = 'experiences_personal';
52
53
    public static function boot()
54
    {
55
        parent::boot();
56
57
        // Delete associated ExperienceSkills when this is deleted.
58
        static::deleting(function ($personal): void {
59
            foreach ($personal->experience_skills as $es) {
60
                $es->delete();
61
            }
62
        });
63
    }
64
65
    public function experienceable() //phpcs:ignore
66
    {
67
        return $this->morphTo();
68
    }
69
70
    public function skills()
71
    {
72
        return $this->morphToMany(\App\Models\Skill::class, 'experience', 'experience_skills');
73
    }
74
75
    public function experience_skills() //phpcs:ignore
76
    {
77
        return $this->morphMany(\App\Models\ExperienceSkill::class, 'experience');
78
    }
79
80
    /**
81
     * Returns the name of this experience type. Used to distinguish from other Experience models.
82
     * @return string Returns the string 'experience_personal'.
83
     */
84
    public function experienceTypeName(): string
85
    {
86
        return 'experience_personal';
87
    }
88
}
89