Total Complexity | 7 |
Total Lines | 56 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class RatingGuideQuestionPolicy extends BasePolicy |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * Determine whether the user can view the RatingGuideQuestion. |
||
14 | * |
||
15 | * @param \App\Models\User $user |
||
1 ignored issue
–
show
|
|||
16 | * @param \App\Models\RatingGuideQuestion $question |
||
1 ignored issue
–
show
|
|||
17 | * @return boolean |
||
18 | */ |
||
19 | public function view(User $user, RatingGuideQuestion $question): bool |
||
20 | { |
||
21 | // Managers can view questions tied to Jobs they own. |
||
22 | return $user->hasRole('manager') && |
||
23 | $question->job_poster->manager->user_id === $user->id; |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Determine whether the user can create RatingGuideQuestions. |
||
28 | * |
||
29 | * @param \App\Models\User $user |
||
1 ignored issue
–
show
|
|||
30 | * @return boolean |
||
31 | */ |
||
32 | public function create(User $user): bool |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Determine whether the user can update the RatingGuideQuestion |
||
40 | * |
||
41 | * @param \App\Models\User $user |
||
1 ignored issue
–
show
|
|||
42 | * @param \App\Models\RatingGuideQuestion $question |
||
1 ignored issue
–
show
|
|||
43 | * @return boolean |
||
44 | */ |
||
45 | public function update(User $user, RatingGuideQuestion $question): bool |
||
46 | { |
||
47 | // Managers can edit questions tied to Jobs they own. |
||
48 | return $user->hasRole('manager') && |
||
49 | $question->job_poster->manager->user_id === $user->id; |
||
50 | } |
||
51 | |||
52 | /** |
||
53 | * Determine whether the user can delete the job poster. |
||
54 | * |
||
55 | * @param \App\Models\User $user |
||
1 ignored issue
–
show
|
|||
56 | * @param \App\Models\RatingGuideQuestion $question |
||
1 ignored issue
–
show
|
|||
57 | * |
||
58 | * @return boolean |
||
59 | */ |
||
60 | public function delete(User $user, RatingGuideQuestion $question) : bool |
||
65 | } |
||
66 | } |
||
67 |