Test Failed
Pull Request — master (#85)
by Bertrand
10:27
created
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/Src/UseCases/Infra/Sql/Model/ContextModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
     public function toDto():ContextDto
24 24
     {
25
-        $characteristics = $this->user->characteristics()->get()->transform(function(CharacteristicsModel $item){
25
+        $characteristics = $this->user->characteristics()->get()->transform(function(CharacteristicsModel $item) {
26 26
             return $item->toDto();
27 27
         });
28 28
         return new ContextDto(
Please login to merge, or discard this patch.
app/Src/UseCases/Infra/Sql/InteractionPageRepositorySql.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
             ->where('page_id', $interaction->pageId())
26 26
             ->first();
27 27
 
28
-        if($interactionModel === null) {
28
+        if ($interactionModel === null) {
29 29
             $interactionModel = new InteractionModel();
30 30
             $interactionModel->{$canInteract->key()} = isset($user->id) ? $user->id : $canInteract->identifier();
31 31
         }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     public function getByInteractUser(CanInteract $canInteract, int $pageId): ?Interaction
39 39
     {
40
-        if($canInteract->key() == 'user_id') {
40
+        if ($canInteract->key() == 'user_id') {
41 41
             $user = User::query()->where('uuid', $canInteract->identifier())->first();
42 42
         }
43 43
 
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
             ->where('page_id', $pageId)
47 47
             ->first();
48 48
 
49
-        if(!isset($interactionModel)){
49
+        if (!isset($interactionModel)) {
50 50
             return null;
51 51
         }
52 52
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
             ->orderBy('updated_at', 'desc')
83 83
             ->get();
84 84
 
85
-        foreach($interactionsModel as $interaction) {
85
+        foreach ($interactionsModel as $interaction) {
86 86
             $page = PageModel::query()->where('page_id', $interaction->page_id)->first();
87 87
             $applause = InteractionModel::query()->where('page_id', $interaction->page_id)->where('applause', true)->count();
88 88
             if ($interaction->follow) {
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
             ->where('user_id', $user->id)
105 105
             ->where('done', true)
106 106
             ->get();
107
-        foreach ($records as $record){
107
+        foreach ($records as $record) {
108 108
             $practises[] = new PractiseVo(
109 109
                 $record->page_id,
110 110
                 $record->page->title ?? '',
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
             ->where('page_id', $pageId)
123 123
             ->whereNotNull('user_id')
124 124
             ->paginate()
125
-            ->through(function ($item){
125
+            ->through(function($item) {
126 126
                 return $item->user->context->toDto();
127 127
             })
128 128
         ;
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Context/Queries/GetLastWikiUserComments.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     public function get(string $userId)
26 26
     {
27 27
         $comments = Cache::get("comments_".$userId);
28
-        if(isset($comments)){
28
+        if (isset($comments)) {
29 29
             return json_decode($comments, true);
30 30
         }
31 31
 
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
         $comments = $content['query']['usercomments'];
35 35
 
36 36
         $commentsToRetrieved = [];
37
-        foreach($comments as $comment){
38
-            if(!isset($commentsToRetrieved[$comment['pageid']])) {
37
+        foreach ($comments as $comment) {
38
+            if (!isset($commentsToRetrieved[$comment['pageid']])) {
39 39
                 $commentsToRetrieved[$comment['pageid']] = $comment;
40 40
 
41 41
                 $realPageId = $comment['associatedid'];
Please login to merge, or discard this patch.
app/Http/Controllers/Profile/ProfileController.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -34,14 +34,14 @@  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
             return redirect()->route('wizard.profile');
39 39
         }
40 40
         $user = app(AuthGateway::class)->current()->toArray();
41 41
         $roles = app(GetUserRole::class)->get()->toArray();
42 42
         $practises = app(GetUserPractises::class)->get(Auth::user()->uuid);
43 43
         $interactions = app(InteractionsQueryByUser::class)->get(Auth::user()->uuid);
44
-        $usersCharacteristics =  array_merge($context['productions'], $context['characteristics']);
44
+        $usersCharacteristics = array_merge($context['productions'], $context['characteristics']);
45 45
         $uuidsUserCharacteristics = array_column($usersCharacteristics, 'uuid');
46 46
         $role = last($user['roles']);
47 47
 
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     {
65 65
         try {
66 66
             $user = app(GetUser::class)->get($userId)->toArray();
67
-        }catch (UserNotFound $e){
67
+        } catch (UserNotFound $e) {
68 68
             throw new NotFoundHttpException();
69 69
         }
70 70
 
@@ -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(InteractionsQueryByUser::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
 
@@ -137,9 +137,9 @@  discard block
 block discarded – undo
137 137
         $uri = config('wiki.api_uri').'?action=query&list=search&srwhat=text&srsearch='.$qry.'&srqiprofile=classic_noboostlinks&srnamespace=3000&format=json';
138 138
         $response = $client->get($uri);
139 139
         $content = json_decode($response->getBody()->getContents(), true);
140
-        if(isset($content['query']['search'])){
140
+        if (isset($content['query']['search'])) {
141 141
             $results = array_column($content['query']['search'], 'title');
142
-            return array_map(function ($item){
142
+            return array_map(function($item) {
143 143
                 return str_replace('Structure:', '', $item);
144 144
             }, $results);
145 145
         }
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 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
             return redirect()->route('wizard.profile');
39 39
         }
40 40
         $user = app(AuthGateway::class)->current()->toArray();
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     {
65 65
         try {
66 66
             $user = app(GetUser::class)->get($userId)->toArray();
67
-        }catch (UserNotFound $e){
67
+        } catch (UserNotFound $e){
68 68
             throw new NotFoundHttpException();
69 69
         }
70 70
 
Please login to merge, or discard this patch.