@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | ->where('page_id', $interaction->pageId()) |
27 | 27 | ->first(); |
28 | 28 | |
29 | - if($interactionModel === null) { |
|
29 | + if ($interactionModel === null) { |
|
30 | 30 | $interactionModel = new InteractionModel(); |
31 | 31 | $interactionModel->{$canInteract->key()} = isset($user->id) ? $user->id : $canInteract->identifier(); |
32 | 32 | } |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | |
39 | 39 | public function getByInteractUser(CanInteract $canInteract, int $pageId): ?Interaction |
40 | 40 | { |
41 | - if($canInteract->key() == 'user_id') { |
|
41 | + if ($canInteract->key() == 'user_id') { |
|
42 | 42 | $user = User::query()->where('uuid', $canInteract->identifier())->first(); |
43 | 43 | } |
44 | 44 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | ->where('page_id', $pageId) |
48 | 48 | ->first(); |
49 | 49 | |
50 | - if(!isset($interactionModel)){ |
|
50 | + if (!isset($interactionModel)) { |
|
51 | 51 | return null; |
52 | 52 | } |
53 | 53 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | ->orderBy('updated_at', 'desc') |
84 | 84 | ->get(); |
85 | 85 | |
86 | - foreach($interactionsModel as $interaction) { |
|
86 | + foreach ($interactionsModel as $interaction) { |
|
87 | 87 | $page = PageModel::query()->where('page_id', $interaction->page_id)->first(); |
88 | 88 | $applause = InteractionModel::query()->where('page_id', $interaction->page_id)->where('applause', true)->count(); |
89 | 89 | if ($interaction->follow) { |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | ->where('user_id', $user->id) |
106 | 106 | ->where('done', true) |
107 | 107 | ->get(); |
108 | - foreach ($records as $record){ |
|
108 | + foreach ($records as $record) { |
|
109 | 109 | $practises[] = new PractiseVo( |
110 | 110 | $record->page_id, |
111 | 111 | $record->page->title ?? '', |
@@ -134,15 +134,15 @@ discard block |
||
134 | 134 | { |
135 | 135 | return InteractionModel::query() |
136 | 136 | ->with('user.context') |
137 | - ->when($type == 'follow', function ($query) { |
|
137 | + ->when($type == 'follow', function($query) { |
|
138 | 138 | $query->where('follow', true); |
139 | 139 | }) |
140 | - ->when($type == 'do', function ($query) { |
|
140 | + ->when($type == 'do', function($query) { |
|
141 | 141 | $query->where('done', true); |
142 | 142 | }) |
143 | - ->when($characteristicId !== null, function ($query) use($characteristicId) { |
|
143 | + ->when($characteristicId !== null, function($query) use($characteristicId) { |
|
144 | 144 | $characteristic = CharacteristicsModel::query()->where('uuid', $characteristicId)->first(); |
145 | - if(!isset($characteristic)){ |
|
145 | + if (!isset($characteristic)) { |
|
146 | 146 | return; |
147 | 147 | } |
148 | 148 | $query->whereRaw( |
@@ -150,9 +150,9 @@ discard block |
||
150 | 150 | $characteristic->id |
151 | 151 | ); |
152 | 152 | }) |
153 | - ->when($characteristicIdCroppingSystem !== null, function ($query) use($characteristicIdCroppingSystem) { |
|
153 | + ->when($characteristicIdCroppingSystem !== null, function($query) use($characteristicIdCroppingSystem) { |
|
154 | 154 | $characteristic = CharacteristicsModel::query()->where('uuid', $characteristicIdCroppingSystem)->first(); |
155 | - if(!isset($characteristic)){ |
|
155 | + if (!isset($characteristic)) { |
|
156 | 156 | return; |
157 | 157 | } |
158 | 158 | $query->whereRaw( |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | $characteristic->id |
161 | 161 | ); |
162 | 162 | }) |
163 | - ->when($cp !== null, function ($query) use($cp) { |
|
163 | + ->when($cp !== null, function($query) use($cp) { |
|
164 | 164 | $query->join('users', 'users.id', 'interactions.user_id') |
165 | 165 | ->join('contexts', 'users.context_id', 'contexts.id') |
166 | 166 | ->where('contexts.postal_code', $cp); |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | ->where('page_id', $pageId) |
169 | 169 | ->whereNotNull('interactions.user_id') |
170 | 170 | ->paginate() |
171 | - ->through(function ($item){ |
|
171 | + ->through(function($item) { |
|
172 | 172 | return $item->user->context->toDto(); |
173 | 173 | }) |
174 | 174 | ; |
@@ -15,11 +15,11 @@ discard block |
||
15 | 15 | |
16 | 16 | class ContextRepositorySql implements ContextRepository |
17 | 17 | { |
18 | - public function getByUser(string $userId):?Context |
|
18 | + public function getByUser(string $userId): ?Context |
|
19 | 19 | { |
20 | 20 | $user = User::where('uuid', $userId)->first(); |
21 | 21 | $context = DB::table('contexts')->where('id', $user->context_id)->first(); |
22 | - if($context == null){ |
|
22 | + if ($context == null) { |
|
23 | 23 | return null; |
24 | 24 | } |
25 | 25 | return new Context( |
@@ -38,8 +38,8 @@ discard block |
||
38 | 38 | $user = User::where('uuid', $userId)->first(); |
39 | 39 | |
40 | 40 | $farmings = $contextData->get('farmings'); |
41 | - foreach($farmings as $farming){ |
|
42 | - $characteristic = CharacteristicsModel::where('uuid', (string)$farming)->first(); |
|
41 | + foreach ($farmings as $farming) { |
|
42 | + $characteristic = CharacteristicsModel::where('uuid', (string) $farming)->first(); |
|
43 | 43 | $user->characteristics()->save($characteristic); |
44 | 44 | } |
45 | 45 | |
@@ -51,21 +51,21 @@ discard block |
||
51 | 51 | public function getByUserDto(string $userId): ?ContextDto |
52 | 52 | { |
53 | 53 | $user = User::where('uuid', $userId)->first(); |
54 | - if($user == null){ |
|
54 | + if ($user == null) { |
|
55 | 55 | return null; |
56 | 56 | } |
57 | 57 | $context = ContextModel::find($user->context_id); |
58 | - if($context == null){ |
|
58 | + if ($context == null) { |
|
59 | 59 | return null; |
60 | 60 | } |
61 | - $characteristics = $user->characteristics()->get()->transform(function(CharacteristicsModel $item){ |
|
61 | + $characteristics = $user->characteristics()->get()->transform(function(CharacteristicsModel $item) { |
|
62 | 62 | return $item->toDto(); |
63 | 63 | }); |
64 | 64 | |
65 | 65 | $numberDepartment = (new PostalCode($context->postal_code))->department(); |
66 | 66 | $characteristicDepartment = CharacteristicsModel::query()->where('code', $numberDepartment)->first(); |
67 | 67 | |
68 | - if(isset($characteristicDepartment)){ |
|
68 | + if (isset($characteristicDepartment)) { |
|
69 | 69 | $characteristics->push($characteristicDepartment->toDto()); |
70 | 70 | } |
71 | 71 | |
@@ -83,12 +83,12 @@ discard block |
||
83 | 83 | public function update(Context $context, string $userId) |
84 | 84 | { |
85 | 85 | $user = User::where('uuid', $userId)->first(); |
86 | - if($user == null){ |
|
86 | + if ($user == null) { |
|
87 | 87 | return null; |
88 | 88 | } |
89 | 89 | |
90 | 90 | $contextModel = ContextModel::where('uuid', $context->id())->first(); |
91 | - if($contextModel == null){ |
|
91 | + if ($contextModel == null) { |
|
92 | 92 | return null; |
93 | 93 | } |
94 | 94 | $contextData = collect($context->toArray()); |
@@ -96,9 +96,9 @@ discard block |
||
96 | 96 | |
97 | 97 | $farmings = $contextData->get('farmings'); |
98 | 98 | $characteristics = []; |
99 | - foreach($farmings as $farming){ |
|
100 | - $characteristicModel = CharacteristicsModel::where('uuid', (string)$farming)->first(); |
|
101 | - if(isset($characteristicModel)) { |
|
99 | + foreach ($farmings as $farming) { |
|
100 | + $characteristicModel = CharacteristicsModel::where('uuid', (string) $farming)->first(); |
|
101 | + if (isset($characteristicModel)) { |
|
102 | 102 | $characteristics[] = $characteristicModel->id; |
103 | 103 | } |
104 | 104 | } |