Completed
Pull Request — master (#77)
by guillaume
07:58
created
app/Http/Controllers/Profile/ProfileController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         $roles = app(GetUserRole::class)->get()->toArray();
29 29
         $practises = app(GetUserPractises::class)->get(Auth::user()->uuid);
30 30
         $interactions = app(InteractionsQueryByUser::class)->get(Auth::user()->uuid);
31
-        $usersCharacteristics =  array_merge($context['productions'], $context['characteristics']);
31
+        $usersCharacteristics = array_merge($context['productions'], $context['characteristics']);
32 32
         $uuidsUserCharacteristics = array_column($usersCharacteristics, 'uuid');
33 33
         $role = last($user['roles']);
34 34
 
Please login to merge, or discard this patch.
app/Console/Commands/ImportAllPagesFromWiki.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         $this->handlePages($pages);
36 36
         $continue = $content['continue']['gapcontinue'] ?? null;
37 37
 
38
-        while($continue !== null && $continue !== ''){
38
+        while ($continue !== null && $continue !== '') {
39 39
             $this->info($continue);
40 40
 
41 41
             $pagesApiUri = config('wiki.api_uri').$queryPages.'&gapcontinue='.$continue;
Please login to merge, or discard this patch.