@@ -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; |
@@ -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 | } |
@@ -18,17 +18,17 @@ |
||
18 | 18 | $h = $img->height(); |
19 | 19 | $w = $img->width(); |
20 | 20 | |
21 | - if($dim == null){ |
|
21 | + if ($dim == null) { |
|
22 | 22 | return $img->response(); |
23 | 23 | } |
24 | 24 | |
25 | 25 | $img = Image::cache(function($image) use($pathPicture, $dim, $w, $h){ |
26 | - if($w <= $h) { |
|
27 | - $image->make($pathPicture)->widen($dim, function ($constraint) { |
|
26 | + if ($w <= $h) { |
|
27 | + $image->make($pathPicture)->widen($dim, function($constraint) { |
|
28 | 28 | $constraint->upsize(); |
29 | 29 | }); |
30 | - }else{ |
|
31 | - $image->make($pathPicture)->heighten($dim, function ($constraint) { |
|
30 | + } else { |
|
31 | + $image->make($pathPicture)->heighten($dim, function($constraint) { |
|
32 | 32 | $constraint->upsize(); |
33 | 33 | }); |
34 | 34 | } |
@@ -31,7 +31,7 @@ |
||
31 | 31 | $image->make($pathPicture)->widen($dim, function ($constraint) { |
32 | 32 | $constraint->upsize(); |
33 | 33 | }); |
34 | - }else{ |
|
34 | + } else{ |
|
35 | 35 | $image->make($pathPicture)->heighten($dim, function ($constraint) { |
36 | 36 | $constraint->upsize(); |
37 | 37 | }); |
@@ -15,9 +15,9 @@ |
||
15 | 15 | |
16 | 16 | public function department():string |
17 | 17 | { |
18 | - if(substr($this->postalCode, 0, 2) > 96){ |
|
19 | - return substr($this->postalCode, 0,3); |
|
18 | + if (substr($this->postalCode, 0, 2) > 96) { |
|
19 | + return substr($this->postalCode, 0, 3); |
|
20 | 20 | } |
21 | - return substr($this->postalCode, 0,2); |
|
21 | + return substr($this->postalCode, 0, 2); |
|
22 | 22 | } |
23 | 23 | } |
@@ -33,8 +33,8 @@ |
||
33 | 33 | |
34 | 34 | public function update(array $interactions, array $doneValue = []) |
35 | 35 | { |
36 | - foreach ($interactions as $interaction){ |
|
37 | - switch ($interaction){ |
|
36 | + foreach ($interactions as $interaction) { |
|
37 | + switch ($interaction) { |
|
38 | 38 | case 'follow': |
39 | 39 | $this->follow = true; |
40 | 40 | break; |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | // @see https://wiki.tripleperformance.fr/wiki/Aide:Requettes_Insights |
23 | 23 | private $queryFarming = "?action=ask&api_version=3&query=[[Est un élément de profil::Production]]|?A un fichier d'icone de caractéristique|?Doit être affiché par défaut|?A une priorité d'affichage|?A un label|sort=A une priorité d'affichage|order=asc&format=json"; |
24 | - private $queryCroppingSystem = "?action=ask&api_version=3&query=[[Est un élément de profil::Cahier des charges]]|?A un fichier d'icone de caractéristique|?Doit être affiché par défaut|?A une priorité d'affichage|?A un label|sort=A une priorité d'affichage|order=asc&format=json"; |
|
24 | + private $queryCroppingSystem = "?action=ask&api_version=3&query=[[Est un élément de profil::Cahier des charges]]|?A un fichier d'icone de caractéristique|?Doit être affiché par défaut|?A une priorité d'affichage|?A un label|sort=A une priorité d'affichage|order=asc&format=json"; |
|
25 | 25 | |
26 | 26 | |
27 | 27 | public function __construct() |
@@ -46,27 +46,27 @@ discard block |
||
46 | 46 | $content = json_decode($response->getBody()->getContents(), true); |
47 | 47 | $characteristics = $content['query']['results']; |
48 | 48 | |
49 | - foreach ($characteristics as $key => $characteristic){ |
|
49 | + foreach ($characteristics as $key => $characteristic) { |
|
50 | 50 | $page = key($characteristic); |
51 | 51 | $characteristic = last($characteristic); |
52 | 52 | |
53 | 53 | $uuid = Uuid::uuid4(); |
54 | 54 | $path = ''; |
55 | - if(isset($characteristic['printouts']['A un fichier d\'icone de caractéristique'][0]['fulltext'])) { |
|
55 | + if (isset($characteristic['printouts']['A un fichier d\'icone de caractéristique'][0]['fulltext'])) { |
|
56 | 56 | $picture = $characteristic['printouts']['A un fichier d\'icone de caractéristique'][0]['fulltext']; |
57 | 57 | $picturesApiUri = config('wiki.api_uri').$queryPictures.$picture; |
58 | 58 | |
59 | 59 | $response = $this->httpClient->get($picturesApiUri); |
60 | 60 | $content = json_decode($response->getBody()->getContents(), true); |
61 | 61 | $picturesInfo = $content['query']['pages']; |
62 | - foreach($picturesInfo as $picture) { |
|
62 | + foreach ($picturesInfo as $picture) { |
|
63 | 63 | if (isset(last($picture['imageinfo'])['url'])) { |
64 | 64 | try { |
65 | 65 | $response = $this->httpClient->get(last($picture['imageinfo'])['url']); |
66 | 66 | $content = $response->getBody()->getContents(); |
67 | - $path = 'public/characteristics/' . $uuid . '.png'; |
|
68 | - Storage::put('public/characteristics/' . $uuid . '.png', $content); |
|
69 | - }catch (ClientException $e){ |
|
67 | + $path = 'public/characteristics/'.$uuid.'.png'; |
|
68 | + Storage::put('public/characteristics/'.$uuid.'.png', $content); |
|
69 | + } catch (ClientException $e) { |
|
70 | 70 | $path = ''; |
71 | 71 | } |
72 | 72 | } |
@@ -86,17 +86,17 @@ discard block |
||
86 | 86 | $characteristicsToSave = [ |
87 | 87 | 'uuid' => $uuid, |
88 | 88 | 'main' => $main, |
89 | - 'priority' => (int)last($characteristic['printouts']['A une priorité d\'affichage']), |
|
89 | + 'priority' => (int) last($characteristic['printouts']['A une priorité d\'affichage']), |
|
90 | 90 | 'icon' => $path, |
91 | 91 | 'page_label' => $label, |
92 | 92 | 'pretty_page_label' => $prettyPage, |
93 | - 'page_id' => (int)$pageInfo['pageid'], |
|
93 | + 'page_id' => (int) $pageInfo['pageid'], |
|
94 | 94 | 'type' => $type, |
95 | 95 | 'code' => $pageInfo['title'] |
96 | 96 | ]; |
97 | 97 | |
98 | - $model = CharacteristicsModel::where('page_id', (int)$pageInfo['pageid'])->first(); |
|
99 | - if(!isset($model)) { |
|
98 | + $model = CharacteristicsModel::where('page_id', (int) $pageInfo['pageid'])->first(); |
|
99 | + if (!isset($model)) { |
|
100 | 100 | $model = new CharacteristicsModel(); |
101 | 101 | } |
102 | 102 | $model->fill($characteristicsToSave); |
@@ -66,7 +66,7 @@ |
||
66 | 66 | $content = $response->getBody()->getContents(); |
67 | 67 | $path = 'public/characteristics/' . $uuid . '.png'; |
68 | 68 | Storage::put('public/characteristics/' . $uuid . '.png', $content); |
69 | - }catch (ClientException $e){ |
|
69 | + } catch (ClientException $e){ |
|
70 | 70 | $path = ''; |
71 | 71 | } |
72 | 72 | } |
@@ -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; |
@@ -25,7 +25,7 @@ discard block |
||
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 |
||
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']; |
@@ -13,7 +13,7 @@ |
||
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; |