Passed
Pull Request — master (#78)
by guillaume
08:05
created
app/Http/Controllers/Profile/ProfileController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         $allCharacteristics = app(GetAllCharacteristics::class)->get();
35 35
         try {
36 36
             $context = $contextQueryByUser->execute(Auth::user()->uuid)->toArray();
37
-        }catch (\Throwable $e){
37
+        } catch (\Throwable $e) {
38 38
             Log::emergency($e->getMessage().' '.$e->getLine().' '.$e->getFile().' '.$e->getTraceAsString());
39 39
             return redirect()->route('wizard.profile');
40 40
         }
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         $roles = app(GetUserRole::class)->get()->toArray();
44 44
         $practises = app(GetUserPractises::class)->get(Auth::user()->uuid);
45 45
         $interactions = app(GetInteractionsByUser::class)->get(Auth::user()->uuid);
46
-        $usersCharacteristics =  array_merge($context['productions'], $context['characteristics'], $context['characteristics_departement']);
46
+        $usersCharacteristics = array_merge($context['productions'], $context['characteristics'], $context['characteristics_departement']);
47 47
         $uuidsUserCharacteristics = array_column($usersCharacteristics, 'uuid');
48 48
         $role = last($user['roles']);
49 49
         $routeComment = route('profile.comments.show');
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
         $roles = app(GetUserRole::class)->get()->toArray();
73 73
         $practises = app(GetUserPractises::class)->get($userId);
74 74
         $interactions = app(GetInteractionsByUser::class)->get($userId);
75
-        $usersCharacteristics =  array_merge($context['productions'], $context['characteristics']);
75
+        $usersCharacteristics = array_merge($context['productions'], $context['characteristics']);
76 76
         $uuidsUserCharacteristics = array_column($usersCharacteristics, 'uuid');
77 77
         $role = last($user['roles']);
78 78
 
Please login to merge, or discard this patch.
app/Src/UseCases/Infra/Sql/ReportingCharacteristicSql.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,12 +15,12 @@  discard block
 block discarded – undo
15 15
             ->selectRaw('count(*) AS count, contexts.department_number as department_number')
16 16
             ->join('users', 'users.id', 'interactions.user_id')
17 17
             ->join('contexts', 'users.context_id', 'contexts.id')
18
-            ->where(function ($query) use ($type){
19
-                $query->when($type === 'follow', function ($query) {
18
+            ->where(function($query) use ($type){
19
+                $query->when($type === 'follow', function($query) {
20 20
                     $query->where('follow', true);
21 21
                     $query->orWhere('done', true);
22 22
                 })
23
-                ->when($type === 'do', function ($query) {
23
+                ->when($type === 'do', function($query) {
24 24
                     $query->where('done', true);
25 25
                 });
26 26
             })
@@ -30,9 +30,9 @@  discard block
 block discarded – undo
30 30
             ->get();
31 31
 
32 32
         $interactionsToReturn = [];
33
-        foreach($interactions as $interaction){
33
+        foreach ($interactions as $interaction) {
34 34
             $characteristicsModel = CharacteristicsModel::query()->where('code', $interaction->department_number)->first();
35
-            if(!isset($characteristicsModel)){
35
+            if (!isset($characteristicsModel)) {
36 36
                 continue;
37 37
             }
38 38
             $characteristicsModel->icon = route('api.icon.serve', ['id' => $characteristicsModel->uuid]);
@@ -53,12 +53,12 @@  discard block
 block discarded – undo
53 53
             ->join('contexts', 'users.context_id', 'contexts.id')
54 54
             ->join('user_characteristics', 'user_characteristics.user_id', 'users.id')
55 55
             ->join('characteristics', 'characteristics.id', 'user_characteristics.characteristic_id')
56
-            ->where(function ($query) use ($type){
57
-                $query->when($type === 'follow', function ($query) {
56
+            ->where(function($query) use ($type){
57
+                $query->when($type === 'follow', function($query) {
58 58
                     $query->where('follow', true);
59 59
                     $query->orWhere('done', true);
60 60
                 })
61
-                ->when($type === 'do', function ($query) {
61
+                ->when($type === 'do', function($query) {
62 62
                     $query->where('done', true);
63 63
                 });
64 64
             })
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             ->get();
72 72
 
73 73
         $characteristicsToReturn = [];
74
-        foreach($characteristicsCount as $characteristicCount){
74
+        foreach ($characteristicsCount as $characteristicCount) {
75 75
             $characteristic = CharacteristicsModel::query()->find($characteristicCount->characteristic_id);
76 76
             $characteristic->count = $characteristicCount->count;
77 77
             $c = $characteristic->toArray();
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Context/Queries/SearchStructure.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,13 +17,13 @@
 block discarded – undo
17 17
         $uri = config('wiki.api_uri').'?action=query&list=search&srwhat=text&srsearch='.$search.'&srqiprofile=classic_noboostlinks&srnamespace=3000&format=json';
18 18
         try {
19 19
             $response = $client->get($uri);
20
-        }catch (\Throwable $e){
20
+        } catch (\Throwable $e) {
21 21
             return ['results' => []];
22 22
         }
23 23
         $content = json_decode($response->getBody()->getContents(), true);
24
-        if(isset($content['query']['search'])){
24
+        if (isset($content['query']['search'])) {
25 25
             $results = array_column($content['query']['search'], 'title');
26
-            return array_map(function ($item){
26
+            return array_map(function($item) {
27 27
                 return str_replace('Structure:', '', $item);
28 28
             }, $results);
29 29
         }
Please login to merge, or discard this patch.