@@ -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 | } |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | { |
| 20 | 20 | $practisesToReturn = []; |
| 21 | 21 | $practises = $this->interactionsRepository->getDoneByUser($userId); |
| 22 | - foreach ($practises as $practise){ |
|
| 22 | + foreach ($practises as $practise) { |
|
| 23 | 23 | $year = $practise->doneAt() !== null ? $practise->doneAt()->format('Y') : 'Non datée'; |
| 24 | 24 | $practisesToReturn[$year][] = $practise->toArray(); |
| 25 | 25 | } |