@@ -14,7 +14,7 @@ discard block |
||
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 |
||
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 | } |
@@ -61,14 +61,14 @@ discard block |
||
61 | 61 | return ucfirst($this->firstname).' '.ucfirst($this->lastname); |
62 | 62 | } |
63 | 63 | |
64 | - public function organizationId():?string |
|
64 | + public function organizationId(): ?string |
|
65 | 65 | { |
66 | 66 | return $this->organizationId; |
67 | 67 | } |
68 | 68 | |
69 | 69 | public function provider(string $provider, string $providerId):bool |
70 | 70 | { |
71 | - if(isset($this->providers[$provider]) && $this->providers[$provider] == $providerId){ |
|
71 | + if (isset($this->providers[$provider]) && $this->providers[$provider] == $providerId) { |
|
72 | 72 | return true; |
73 | 73 | } |
74 | 74 | return false; |
@@ -87,8 +87,8 @@ discard block |
||
87 | 87 | |
88 | 88 | public function create(string $passwordHashed = null, Picture $picture = null) |
89 | 89 | { |
90 | - if(isset($picture)) { |
|
91 | - $picture->resize('app/public/users/' . $this->id); |
|
90 | + if (isset($picture)) { |
|
91 | + $picture->resize('app/public/users/'.$this->id); |
|
92 | 92 | $this->pathPicture = $picture->relativePath(); |
93 | 93 | } |
94 | 94 | app(UserRepository::class)->add($this, $passwordHashed); |
@@ -130,20 +130,20 @@ discard block |
||
130 | 130 | $this->email = $email; |
131 | 131 | $this->firstname = $firstname; |
132 | 132 | $this->lastname = $lastname; |
133 | - if($pathPicture !== "") { |
|
133 | + if ($pathPicture !== "") { |
|
134 | 134 | $picture = new Picture($pathPicture); |
135 | - $picture->resize('app/public/users/' . $this->id . '.' . $ext); |
|
136 | - $this->pathPicture = 'app/public/users/' . $this->id . '.' . $ext; |
|
135 | + $picture->resize('app/public/users/'.$this->id.'.'.$ext); |
|
136 | + $this->pathPicture = 'app/public/users/'.$this->id.'.'.$ext; |
|
137 | 137 | } |
138 | 138 | app(UserRepository::class)->update($this); |
139 | 139 | } |
140 | 140 | |
141 | 141 | public function updateAvatar(string $pathPicture, string $ext = 'jpg') |
142 | 142 | { |
143 | - if($pathPicture !== "") { |
|
143 | + if ($pathPicture !== "") { |
|
144 | 144 | $picture = new Picture($pathPicture); |
145 | - $picture->resize('app/public/users/' . $this->id . '.' . $ext); |
|
146 | - $this->pathPicture = 'app/public/users/' . $this->id . '.' . $ext; |
|
145 | + $picture->resize('app/public/users/'.$this->id.'.'.$ext); |
|
146 | + $this->pathPicture = 'app/public/users/'.$this->id.'.'.$ext; |
|
147 | 147 | } |
148 | 148 | app(UserRepository::class)->update($this); |
149 | 149 | return $this->pathPicture; |
@@ -10,7 +10,7 @@ |
||
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; |
@@ -12,5 +12,5 @@ |
||
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 | } |
@@ -35,7 +35,7 @@ |
||
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; |
@@ -33,7 +33,7 @@ |
||
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; |
@@ -17,7 +17,7 @@ |
||
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 | } |
@@ -19,7 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | $practisesToReturn = []; |
21 | 21 | $practises = $this->interactionsRepository->getDoneByUser($userId); |
22 | - foreach ($practises as $practise){ |
|
22 | + foreach ($practises as $practise) { |
|
23 | 23 | $year = $practise->doneAt()->format('Y'); |
24 | 24 | $practisesToReturn[$year][] = $practise->toArray(); |
25 | 25 | } |
@@ -11,7 +11,7 @@ |
||
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; |