Completed
Pull Request — master (#70)
by guillaume
11:41
created
app/Src/UseCases/Infra/Sql/InteractionPageRepositorySql.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
             ->where('page_id', $interaction->pageId())
22 22
             ->first();
23 23
 
24
-        if($interactionModel === null) {
24
+        if ($interactionModel === null) {
25 25
             $interactionModel = new InteractionModel();
26 26
             $interactionModel->{$canInteract->key()} = isset($user->id) ? $user->id : $canInteract->identifier();
27 27
         }
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     public function getByInteractUser(CanInteract $canInteract, int $pageId): ?Interaction
35 35
     {
36
-        if($canInteract->key() == 'user_id') {
36
+        if ($canInteract->key() == 'user_id') {
37 37
             $user = User::query()->where('uuid', $canInteract->identifier())->first();
38 38
         }
39 39
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
             ->where('page_id', $pageId)
43 43
             ->first();
44 44
 
45
-        if(!isset($interactionModel)){
45
+        if (!isset($interactionModel)) {
46 46
             return null;
47 47
         }
48 48
 
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Shared/Gateway/AuthGateway.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 interface AuthGateway
10 10
 {
11
-    public function current():? User;
11
+    public function current(): ? User;
12 12
     public function log(User $u);
13
-    public function wikiSessionId():?string;
13
+    public function wikiSessionId(): ?string;
14 14
 }
Please login to merge, or discard this patch.
app/Console/Commands/SyncDryPagesFromWiki.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     {
24 24
         $httpClient = new Client();
25 25
 
26
-        PageModel::query()->where('dry', true)->chunkById(50, function ($items, $count) use($httpClient){
26
+        PageModel::query()->where('dry', true)->chunkById(50, function($items, $count) use($httpClient){
27 27
             $this->info(($count*50).' Pages');
28 28
             $pages = $items->pluck('page_id')->toArray();
29 29
             $pagesApiUri = config('wiki.api_uri').$this->queryPages.implode('|', $pages);
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
             $content = json_decode($response->getBody()->getContents(), true);
32 32
             $wikiPages = $content['query']['pages'];
33 33
 
34
-            foreach($wikiPages as $page){
34
+            foreach ($wikiPages as $page) {
35 35
                 $pageModel = PageModel::query()->where('page_id', $page['pageid'])->first();
36 36
                 $pageModel->dry = false;
37 37
                 $pageModel->title = $page['title'];
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
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         $this->handlePages($pages);
35 35
         $continue = $content['continue']['gapcontinue'];
36 36
 
37
-        while($continue !== null && $continue !== ''){
37
+        while ($continue !== null && $continue !== '') {
38 38
             $this->info($continue);
39 39
 
40 40
             $pagesApiUri = config('wiki.api_uri').$queryPages.'&gapcontinue='.$continue;
Please login to merge, or discard this patch.
app/Src/UseCases/Infra/Gateway/SessionAuthGateway.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function current(): ?User
15 15
     {
16 16
         $userModel = Auth::user();
17
-        if(!isset($userModel)){
17
+        if (!isset($userModel)) {
18 18
             return null;
19 19
         }
20 20
         return new User($userModel->uuid, $userModel->email, $userModel->firstname, $userModel->lastname, $userModel->organization_id);
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         Auth::login($authenticate, true);
27 27
     }
28 28
 
29
-    public function wikiSessionId():? string
29
+    public function wikiSessionId(): ? string
30 30
     {
31 31
         return Session::get('wiki_session_id');
32 32
     }
Please login to merge, or discard this patch.
app/Http/Controllers/Api/InteractionController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@
 block discarded – undo
25 25
      * @bodyParam interactions string[] required The user's interactions on the page. Example: unapplause, done
26 26
      */
27 27
     public function handle($pageId, Request $request,
28
-                           HandleInteractions $handleInteractions,
29
-                           InteractionsQueryByPageAndUser $interactionsQueryByPageAndUser,
30
-                           CountInteractionsOnPageQuery $countInteractionsOnPage
28
+                            HandleInteractions $handleInteractions,
29
+                            InteractionsQueryByPageAndUser $interactionsQueryByPageAndUser,
30
+                            CountInteractionsOnPageQuery $countInteractionsOnPage
31 31
     )
32 32
     {
33 33
         $interactions = $request->input('interactions');
Please login to merge, or discard this patch.
app/Http/Controllers/Api/OAuthController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,13 +15,13 @@  discard block
 block discarded – undo
15 15
     {
16 16
         $token = $request->input('wiki_token', null);
17 17
 
18
-        if($token === null || $token === ''){
18
+        if ($token === null || $token === '') {
19 19
             return ['error' => 'invalid_token'];
20 20
         }
21 21
         $user = User::where('email', '[email protected]')->first();
22 22
         //$user = User::where('wiki_token', $token)->first();
23 23
 
24
-        if($user === null){
24
+        if ($user === null) {
25 25
             return ['error' => 'invalid_token'];
26 26
         }
27 27
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     public function logout()
41 41
     {
42 42
         $user = Auth::user();
43
-        if(isset($user)){
43
+        if (isset($user)) {
44 44
             $user->wiki_token = '';
45 45
             $user->save();
46 46
             Auth::logout();
Please login to merge, or discard this patch.