Test Failed
Pull Request — master (#78)
by guillaume
07:56
created
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
         $roles = $userModel->roles()->pluck('name')->toArray();
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
         Auth::login($authenticate, true);
28 28
     }
29 29
 
30
-    public function wikiSessionId():? string
30
+    public function wikiSessionId(): ? string
31 31
     {
32 32
         return Session::get('wiki_session_id');
33 33
     }
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Ports/InteractionRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 interface InteractionRepository
11 11
 {
12 12
     public function save(CanInteract $canInteract, Interaction $interaction);
13
-    public function getByInteractUser(CanInteract $canInteract, int $pageId):?Interaction;
13
+    public function getByInteractUser(CanInteract $canInteract, int $pageId): ?Interaction;
14 14
     public function transfer(CanInteract $anonymous, CanInteract $registered);
15 15
     public function getCountInteractionsOnPage(int $pageId):array;
16 16
     public function getInteractionsByUser(string $userId):array;
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Ports/ContextRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,5 +12,5 @@
 block discarded – undo
12 12
     public function getByUser(string $userId);
13 13
     public function add(Context $context, string $userId);
14 14
     public function update(Context $context, string $userId);
15
-    public function getByUserDto(string $userId):?ContextDto;
15
+    public function getByUserDto(string $userId): ?ContextDto;
16 16
 }
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.
app/Src/UseCases/Domain/Context/Dto/ContextDto.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         $this->postalCode = $postalCode;
34 34
         $this->department = (new PostalCode($postalCode))->department();
35 35
         $this->characteristics = $characteristics;
36
-        foreach($this->characteristics as $characteristic){
36
+        foreach ($this->characteristics as $characteristic) {
37 37
             $this->characteristicsByType[$characteristic->type()][] = $characteristic;
38 38
         }
39 39
         $this->description = $description;
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Context/Dto/PractiseVo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         $this->doneAt = $doneAt;
18 18
     }
19 19
 
20
-    public function doneAt():?\DateTime
20
+    public function doneAt(): ?\DateTime
21 21
     {
22 22
         return $this->doneAt;
23 23
     }
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/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/Src/UseCases/Domain/Context/Dto/CharacteristicDto.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public $icon;
14 14
     public $opt;
15 15
 
16
-    public function __construct(string $uuid,  string $label, string $type, ?string $icon, $prettyLabel, array $opt = [])
16
+    public function __construct(string $uuid, string $label, string $type, ?string $icon, $prettyLabel, array $opt = [])
17 17
     {
18 18
         $this->uuid = $uuid;
19 19
         $this->label = $label;
Please login to merge, or discard this patch.