Test Failed
Pull Request — master (#78)
by guillaume
08:45
created
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.
app/Src/UseCases/Domain/Context/Queries/SearchCharacteristics.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,10 +17,10 @@
 block discarded – undo
17 17
 
18 18
     public function execute(string $type, string $search):array
19 19
     {
20
-        if($type === 'farming') {
20
+        if ($type === 'farming') {
21 21
             $type = 'culture';
22 22
         }
23
-        if($type === 'croppingSystem') {
23
+        if ($type === 'croppingSystem') {
24 24
             $type = 'label';
25 25
         }
26 26
         return $this->pageRepository->search($type, $search);
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Ports/PageRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 interface PageRepository
10 10
 {
11
-    public function get(string $pageId):?Page;
11
+    public function get(string $pageId): ?Page;
12 12
     public function getByIds(array $pagesId):array;
13 13
     public function save(Page $page);
14 14
 }
Please login to merge, or discard this patch.
app/Src/UseCases/Infra/Sql/PageRepositorySql.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function get(string $pageId): ?Page
15 15
     {
16 16
         $pageModel = PageModel::where('page_id', $pageId)->first();
17
-        if(!isset($pageModel)){
17
+        if (!isset($pageModel)) {
18 18
             return null;
19 19
         }
20 20
         return new Page($pageModel->page_id, $pageModel->dry);
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     public function save(Page $page)
35 35
     {
36 36
         $pageModel = PageModel::where('page_id', $page->pageId())->first();
37
-        if(!isset($pageModel)){
37
+        if (!isset($pageModel)) {
38 38
             $pageModel = new PageModel();
39 39
         }
40 40
         $pageModel->page_id = $page->pageId();
@@ -45,11 +45,11 @@  discard block
 block discarded – undo
45 45
     public function search(string $type, string $search):array
46 46
     {
47 47
         $pageModel = PageModel::query()
48
-            ->where('title','LIKE', '%'.$search.'%')
48
+            ->where('title', 'LIKE', '%'.$search.'%')
49 49
             ->where('type', $type)
50 50
             ->get();
51 51
 
52
-        if(!isset($pageModel)){
52
+        if (!isset($pageModel)) {
53 53
             return [];
54 54
         }
55 55
         return $pageModel->toArray();
Please login to merge, or discard this patch.