@@ -22,9 +22,9 @@ |
||
| 22 | 22 | */ |
| 23 | 23 | public function isComplete($settings, ActivityInstance $activityInstance, ModuleInstance $moduleInstance): bool |
| 24 | 24 | { |
| 25 | - $remainingRoles = $this->rolesNeededtoFill($settings, $activityInstance, $moduleInstance); |
|
| 25 | + $remainingRoles = $this->rolesNeededtoFill($settings, $activityInstance, $moduleInstance); |
|
| 26 | 26 | |
| 27 | - return count($remainingRoles) === 0; |
|
| 27 | + return count($remainingRoles) === 0; |
|
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | public function percentage($settings, ActivityInstance $activityInstance, ModuleInstance $moduleInstance): int |
@@ -31,9 +31,9 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | public function percentage($settings, ActivityInstance $activityInstance, ModuleInstance $moduleInstance): int |
| 33 | 33 | { |
| 34 | - if($activityInstance->resource_type === 'group') { |
|
| 34 | + if ($activityInstance->resource_type === 'group') { |
|
| 35 | 35 | $group = $activityInstance->participant(); |
| 36 | - } else if($activityInstance->resource_type === 'role') { |
|
| 36 | + } else if ($activityInstance->resource_type === 'role') { |
|
| 37 | 37 | $group = $activityInstance->participant()->group(); |
| 38 | 38 | } else { |
| 39 | 39 | return collect(); |
@@ -42,15 +42,15 @@ discard block |
||
| 42 | 42 | $requiredPositions = $this->getRequiredPositions($settings, $group); |
| 43 | 43 | $remainingPositions = $this->rolesNeededtoFill($settings, $activityInstance, $moduleInstance); |
| 44 | 44 | |
| 45 | - if(count($requiredPositions) === 0) { |
|
| 45 | + if (count($requiredPositions) === 0) { |
|
| 46 | 46 | return 100; |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | $filled = count($requiredPositions) - count($remainingPositions); |
| 50 | 50 | |
| 51 | - $percentage = (int) round(($filled/count($requiredPositions)) * 100, 0); |
|
| 51 | + $percentage = (int) round(($filled / count($requiredPositions)) * 100, 0); |
|
| 52 | 52 | |
| 53 | - if($percentage > 100) { |
|
| 53 | + if ($percentage > 100) { |
|
| 54 | 54 | return 100; |
| 55 | 55 | } |
| 56 | 56 | return $percentage; |
@@ -58,9 +58,9 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | protected function rolesNeededtoFill($settings, ActivityInstance $activityInstance, ModuleInstance $moduleInstance) |
| 60 | 60 | { |
| 61 | - if($activityInstance->resource_type === 'group') { |
|
| 61 | + if ($activityInstance->resource_type === 'group') { |
|
| 62 | 62 | $group = $activityInstance->participant(); |
| 63 | - } else if($activityInstance->resource_type === 'role') { |
|
| 63 | + } else if ($activityInstance->resource_type === 'role') { |
|
| 64 | 64 | $group = $activityInstance->participant()->group(); |
| 65 | 65 | } else { |
| 66 | 66 | return collect(); |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | $requiredPositions = $this->getRequiredPositions($settings, $group); |
| 70 | 70 | $roles = $group->roles(); |
| 71 | 71 | $logicGroupId = $moduleInstance->setting('logic_group', null); |
| 72 | - if($logicGroupId !== null) { |
|
| 72 | + if ($logicGroupId !== null) { |
|
| 73 | 73 | $logic = app(LogicRepository::class)->getById($logicGroupId); |
| 74 | 74 | |
| 75 | 75 | $roles = $roles->filter(function(\BristolSU\ControlDB\Contracts\Models\Role $role) use ($logic) { |
@@ -98,7 +98,7 @@ |
||
| 98 | 98 | |
| 99 | 99 | public function baseDirectory() |
| 100 | 100 | { |
| 101 | - return __DIR__ . '/..'; |
|
| 101 | + return __DIR__.'/..'; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | public function boot() |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | } catch (\Exception $e) { |
| 48 | 48 | return false; |
| 49 | 49 | } |
| 50 | - if(in_array($value, $settings['only_one_user'])) { |
|
| 50 | + if (in_array($value, $settings['only_one_user'])) { |
|
| 51 | 51 | return $this->roleRepository->getById($value)->users()->count() === 0; |
| 52 | 52 | } |
| 53 | 53 | return true; |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | public function authorize($ability, $arguments = []) |
| 18 | 18 | { |
| 19 | 19 | return $this->baseAuthorize( |
| 20 | - 'assign-roles.' . $ability, |
|
| 20 | + 'assign-roles.'.$ability, |
|
| 21 | 21 | $arguments |
| 22 | 22 | ); |
| 23 | 23 | } |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | public function rules() |
| 13 | 13 | { |
| 14 | 14 | return [ |
| 15 | - 'position_id' => ['required', app(PositionIsAllowed::class), app(PositionCanBeUsed::class)], |
|
| 15 | + 'position_id' => ['required', app(PositionIsAllowed::class), app(PositionCanBeUsed::class)], |
|
| 16 | 16 | 'role_name' => ['required', 'string', 'max:255', 'min:3'], |
| 17 | 17 | 'email' => ['nullable', 'sometimes', 'email'] |
| 18 | 18 | ]; |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | public function getSettings(Group $group) |
| 36 | 36 | { |
| 37 | - if(Cache::has($this->getCacheKey($group))) { |
|
| 37 | + if (Cache::has($this->getCacheKey($group))) { |
|
| 38 | 38 | return Cache::get($this->getCacheKey($group)); |
| 39 | 39 | } |
| 40 | 40 | $settings = settings('position_settings', []); |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | return false; |
| 54 | 54 | } |
| 55 | 55 | $logic = $this->logicRepository->getById($setting['logic_id']); |
| 56 | - $groups = collect($this->logicAudience->groupAudience($logic))->map(function (Group $group) { |
|
| 56 | + $groups = collect($this->logicAudience->groupAudience($logic))->map(function(Group $group) { |
|
| 57 | 57 | return $group->id(); |
| 58 | 58 | }); |
| 59 | 59 | return $groups->contains($group->id()); |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | protected function getCacheKey(Group $group) |
| 63 | 63 | { |
| 64 | - return PositionSettingRetrieval::class . '.' . $group->id(); |
|
| 64 | + return PositionSettingRetrieval::class.'.'.$group->id(); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | public function parse($setting) |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | public function getSettings(Group $group, array $settings) |
| 36 | 36 | { |
| 37 | - if(Cache::has($this->getCacheKey($group))) { |
|
| 37 | + if (Cache::has($this->getCacheKey($group))) { |
|
| 38 | 38 | return Cache::get($this->getCacheKey($group)); |
| 39 | 39 | } |
| 40 | 40 | foreach ($settings as $setting) { |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | protected function getCacheKey(Group $group) |
| 50 | 50 | { |
| 51 | - return RequiredSettingRetrieval::class . '.' . $group->id(); |
|
| 51 | + return RequiredSettingRetrieval::class.'.'.$group->id(); |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | protected function groupIsForSetting(Group $group, array $setting): bool |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | return false; |
| 58 | 58 | } |
| 59 | 59 | $logic = $this->logicRepository->getById($setting['logic_id']); |
| 60 | - $groups = collect($this->logicAudience->groupAudience($logic))->map(function (Group $group) { |
|
| 60 | + $groups = collect($this->logicAudience->groupAudience($logic))->map(function(Group $group) { |
|
| 61 | 61 | return $group->id(); |
| 62 | 62 | }); |
| 63 | 63 | return $groups->contains($group->id()); |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | private function logicGroupId() |
| 92 | 92 | { |
| 93 | 93 | $id = settings('logic_group', null); |
| 94 | - if($id === null) { |
|
| 94 | + if ($id === null) { |
|
| 95 | 95 | return null; |
| 96 | 96 | } |
| 97 | 97 | return (int) $id; |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | |
| 112 | 112 | private function filter(Collection $roles) |
| 113 | 113 | { |
| 114 | - if($this->hasLogicGroup()) { |
|
| 114 | + if ($this->hasLogicGroup()) { |
|
| 115 | 115 | return $roles->filter(function(\BristolSU\ControlDB\Contracts\Models\Role $role) { |
| 116 | 116 | return $this->isInLogicGroup($role); |
| 117 | 117 | })->values(); |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | private function logicGroupId() |
| 67 | 67 | { |
| 68 | 68 | $id = settings('logic_group', null); |
| 69 | - if($id === null) { |
|
| 69 | + if ($id === null) { |
|
| 70 | 70 | return null; |
| 71 | 71 | } |
| 72 | 72 | return (int) $id; |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | private function filter(Collection $roles) |
| 88 | 88 | { |
| 89 | - if($this->hasLogicGroup()) { |
|
| 89 | + if ($this->hasLogicGroup()) { |
|
| 90 | 90 | return $roles->filter(function(\BristolSU\ControlDB\Contracts\Models\Role $role) { |
| 91 | 91 | return $this->isInLogicGroup($role); |
| 92 | 92 | })->values(); |