Completed
Pull Request — master (#78)
by Bertrand
07:18
created
app/Src/UseCases/Infra/Sql/CharacteristicsRepositorySql.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public function add(array $cs)
41 41
     {
42
-        foreach ($cs as $c){
42
+        foreach ($cs as $c) {
43 43
             $cModel = new CharacteristicsModel();
44 44
             $cModel->fill($c);
45 45
             $cModel->save();
@@ -64,13 +64,13 @@  discard block
 block discarded – undo
64 64
     public function getBy(array $conditions): ?Characteristic
65 65
     {
66 66
         $characteristicModel = CharacteristicsModel::query()
67
-            ->when(isset($conditions['type']), function ($query) use($conditions){
67
+            ->when(isset($conditions['type']), function($query) use($conditions){
68 68
                 $query->where('type', $conditions['type']);
69
-            })->when(isset($conditions['title']), function ($query) use($conditions){
69
+            })->when(isset($conditions['title']), function($query) use($conditions){
70 70
                 $query->where('code', $conditions['title']);
71 71
             })
72 72
             ->first();
73
-        if(!isset($characteristicModel)){
73
+        if (!isset($characteristicModel)) {
74 74
             return null;
75 75
         }
76 76
         return $characteristicModel->toDomain();
@@ -80,13 +80,13 @@  discard block
 block discarded – undo
80 80
     {
81 81
         $characteristicModel = CharacteristicsModel::query()
82 82
             ->where('type', $type)
83
-            ->where('pretty_page_label','LIKE', '%'.$search.'%')
83
+            ->where('pretty_page_label', 'LIKE', '%'.$search.'%')
84 84
             ->get();
85 85
 
86
-        if(!isset($characteristicModel)){
86
+        if (!isset($characteristicModel)) {
87 87
             return [];
88 88
         }
89
-        foreach ($characteristicModel as $characteristic){
89
+        foreach ($characteristicModel as $characteristic) {
90 90
             $characteristics[] = $characteristic->toArray();
91 91
         }
92 92
         return $characteristics ?? [];
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Users/RemoveAvatar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     public function execute(string $uuid)
12 12
     {
13 13
         $user = User::query()->where('uuid', $uuid)->first();
14
-        if(!isset($user)){
14
+        if (!isset($user)) {
15 15
             return null;
16 16
         }
17 17
         $pathPicture = $user->path_picture;
Please login to merge, or discard this patch.
app/Http/Controllers/Profile/ProfileController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,14 +31,14 @@  discard block
 block discarded – undo
31 31
         $allCharacteristics = app(GetAllCharacteristics::class)->get();
32 32
         try {
33 33
             $context = $contextQueryByUser->execute(Auth::user()->uuid)->toArray();
34
-        }catch (\Throwable $e){
34
+        } catch (\Throwable $e) {
35 35
             return redirect()->route('wizard.profile');
36 36
         }
37 37
         $user = app(AuthGateway::class)->current()->toArray();
38 38
         $roles = app(GetUserRole::class)->get()->toArray();
39 39
         $practises = app(GetUserPractises::class)->get(Auth::user()->uuid);
40 40
         $interactions = app(InteractionsQueryByUser::class)->get(Auth::user()->uuid);
41
-        $usersCharacteristics =  array_merge($context['productions'], $context['characteristics']);
41
+        $usersCharacteristics = array_merge($context['productions'], $context['characteristics']);
42 42
         $uuidsUserCharacteristics = array_column($usersCharacteristics, 'uuid');
43 43
         $role = last($user['roles']);
44 44
 
@@ -104,9 +104,9 @@  discard block
 block discarded – undo
104 104
         $uri = config('wiki.api_uri').'?action=query&list=search&srwhat=text&srsearch='.$qry.'&srqiprofile=classic_noboostlinks&srnamespace=3000&format=json';
105 105
         $response = $client->get($uri);
106 106
         $content = json_decode($response->getBody()->getContents(), true);
107
-        if(isset($content['query']['search'])){
107
+        if (isset($content['query']['search'])) {
108 108
             $results = array_column($content['query']['search'], 'title');
109
-            return array_map(function ($item){
109
+            return array_map(function($item) {
110 110
                 return str_replace('Structure:', '', $item);
111 111
             }, $results);
112 112
         }
Please login to merge, or discard this patch.