Passed
Push — master ( eb6d38...49440b )
by Bertrand
08:06
created
app/Src/UseCases/Domain/Context/Queries/GetIcon.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -18,17 +18,17 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
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
                 });
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Context/Model/PostalCode.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Context/Model/Interaction.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
app/Console/Commands/ImportCharacteristicsFromWiki.php 2 patches
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
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
                     }
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.
app/Console/Commands/ImportDepartmentFromWiki.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
     private function handleDepartments($departments)
52 52
     {
53
-        foreach($departments as $key => $department){
53
+        foreach ($departments as $key => $department) {
54 54
             $department = last($department)['printouts'];
55 55
 
56 56
             $climat = last($department['A un climat'])['fulltext'];
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
             $iconUrlApi = str_replace(':file:', last($department['A une icone'])['fulltext'], $this->queryPictures);
60 60
 
61 61
             $characteristicModel = CharacteristicsModel::query()->where('code', $number)->first();
62
-            if(!isset($characteristicModel)){
62
+            if (!isset($characteristicModel)) {
63 63
                 $characteristicModel = new CharacteristicsModel();
64 64
             }
65 65
 
@@ -79,19 +79,19 @@  discard block
 block discarded – undo
79 79
             $response = $this->httpClient->get(config('wiki.api_uri').$iconUrlApi);
80 80
             $content = json_decode($response->getBody()->getContents(), true);
81 81
             $picturesInfo = $content['query']['pages'];
82
-            foreach($picturesInfo as $picture) {
82
+            foreach ($picturesInfo as $picture) {
83 83
                 if (isset($picture['imageinfo']) && isset(last($picture['imageinfo'])['url'])) {
84 84
                     $characteristicModel->page_id = $picture['pageid'];
85 85
                     try {
86 86
                         $response = $this->httpClient->get(last($picture['imageinfo'])['url']);
87 87
                         $content = $response->getBody()->getContents();
88
-                        $path = 'public/characteristics/' . $uuid . '.png';
89
-                        Storage::put('public/characteristics/' . $uuid . '.png', $content);
90
-                    }catch (ClientException $e){
88
+                        $path = 'public/characteristics/'.$uuid.'.png';
89
+                        Storage::put('public/characteristics/'.$uuid.'.png', $content);
90
+                    } catch (ClientException $e) {
91 91
                         $this->info('No icon for department : '.$number);
92 92
                         $path = '';
93 93
                     }
94
-                }else{
94
+                } else {
95 95
                     $this->info('No icon for department : '.$number);
96 96
                     $path = '';
97 97
                 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,11 +87,11 @@
 block discarded – undo
87 87
                         $content = $response->getBody()->getContents();
88 88
                         $path = 'public/characteristics/' . $uuid . '.png';
89 89
                         Storage::put('public/characteristics/' . $uuid . '.png', $content);
90
-                    }catch (ClientException $e){
90
+                    } catch (ClientException $e){
91 91
                         $this->info('No icon for department : '.$number);
92 92
                         $path = '';
93 93
                     }
94
-                }else{
94
+                } else{
95 95
                     $this->info('No icon for department : '.$number);
96 96
                     $path = '';
97 97
                 }
Please login to merge, or discard this patch.
app/Console/Commands/ImportPagesWithIconAndTypeFromWiki.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         $this->handlePages($pages);
40 40
         $continue = $content['query-continue-offset'] ?? null;
41 41
 
42
-        while($continue !== null && $continue !== ''){
42
+        while ($continue !== null && $continue !== '') {
43 43
             $this->info($continue);
44 44
 
45 45
             $pagesApiUri = config('wiki.api_uri').$queryPages.'|offset='.$continue;
@@ -65,23 +65,23 @@  discard block
 block discarded – undo
65 65
                 continue;
66 66
             }
67 67
 
68
-            if($icon !== false) {
68
+            if ($icon !== false) {
69 69
                 $picturesApiUri = config('wiki.api_uri').$this->queryPicture.$icon['fulltext'];
70 70
 
71 71
                 $response = $this->httpClient->get($picturesApiUri);
72 72
                 $content = json_decode($response->getBody()->getContents(), true);
73 73
                 $picturesInfo = $content['query']['pages'];
74
-                foreach($picturesInfo as $picture) {
74
+                foreach ($picturesInfo as $picture) {
75 75
                     if (isset(last($picture['imageinfo'])['url'])) {
76 76
                         try {
77 77
                             $response = $this->httpClient->get(last($picture['imageinfo'])['url']);
78 78
                             $content = $response->getBody()->getContents();
79
-                            $path = 'public/pages/' . $pageModel->id . '.png';
80
-                            Storage::put('public/pages/' . $pageModel->id . '.png', $content);
81
-                        }catch (ClientException $e){
79
+                            $path = 'public/pages/'.$pageModel->id.'.png';
80
+                            Storage::put('public/pages/'.$pageModel->id.'.png', $content);
81
+                        } catch (ClientException $e) {
82 82
                             $path = '';
83 83
                         }
84
-                    }else{
84
+                    } else {
85 85
                         $path = '';
86 86
                     }
87 87
                 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,10 +78,10 @@
 block discarded – undo
78 78
                             $content = $response->getBody()->getContents();
79 79
                             $path = 'public/pages/' . $pageModel->id . '.png';
80 80
                             Storage::put('public/pages/' . $pageModel->id . '.png', $content);
81
-                        }catch (ClientException $e){
81
+                        } catch (ClientException $e){
82 82
                             $path = '';
83 83
                         }
84
-                    }else{
84
+                    } else{
85 85
                         $path = '';
86 86
                     }
87 87
                 }
Please login to merge, or discard this patch.