Passed
Push — master ( 2b0762...9c76a8 )
by Bertrand
26:13 queued 17:43
created
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/Http/Controllers/Profile/ProfileController.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $allCharacteristics = app(GetAllCharacteristics::class)->get();
33 33
         try {
34 34
             $context = $contextQueryByUser->execute(Auth::user()->uuid)->toArray();
35
-        }catch (\Throwable $e){
35
+        } catch (\Throwable $e){
36 36
             Log::emergency($e->getMessage().' '.$e->getLine().' '.$e->getFile().' '.$e->getTraceAsString());
37 37
             return redirect()->route('wizard.profile');
38 38
         }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         $allCharacteristics = app(GetAllCharacteristics::class)->get();
35 35
         try {
36 36
             $context = $contextQueryByUser->execute(Auth::user()->uuid)->toArray();
37
-        }catch (\Throwable $e){
37
+        } catch (\Throwable $e) {
38 38
             Log::emergency($e->getMessage().' '.$e->getLine().' '.$e->getFile().' '.$e->getTraceAsString());
39 39
             return redirect()->route('wizard.profile');
40 40
         }
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         $roles = app(GetUserRole::class)->get()->toArray();
44 44
         $practises = app(GetUserPractises::class)->get(Auth::user()->uuid);
45 45
         $interactions = app(GetInteractionsByUser::class)->get(Auth::user()->uuid);
46
-        $usersCharacteristics =  array_merge($context['productions'], $context['characteristics'], $context['characteristics_departement']);
46
+        $usersCharacteristics = array_merge($context['productions'], $context['characteristics'], $context['characteristics_departement']);
47 47
         $uuidsUserCharacteristics = array_column($usersCharacteristics, 'uuid');
48 48
         $role = last($user['roles']);
49 49
         $routeComment = route('profile.comments.show');
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
         $roles = app(GetUserRole::class)->get()->toArray();
73 73
         $practises = app(GetUserPractises::class)->get($userId);
74 74
         $interactions = app(GetInteractionsByUser::class)->get($userId);
75
-        $usersCharacteristics =  array_merge($context['productions'], $context['characteristics']);
75
+        $usersCharacteristics = array_merge($context['productions'], $context['characteristics']);
76 76
         $uuidsUserCharacteristics = array_column($usersCharacteristics, 'uuid');
77 77
         $role = last($user['roles']);
78 78
 
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.
app/Src/UseCases/Domain/Context/UseCases/CreateCharacteristic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     public function execute(string $id, string $type, string $title)
30 30
     {
31 31
         $characteristic = $this->characteristicRepository->getBy(['title' => $title, 'type' => $type]);
32
-        if(!isset($characteristic)){
32
+        if (!isset($characteristic)) {
33 33
             $characteristic = new Characteristic($id, $type, $title, false);
34 34
             $characteristic->create();
35 35
         }
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Context/Model/Characteristic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 
32 32
     public function create(string $icon = null)
33 33
     {
34
-        if(isset($icon)){
34
+        if (isset($icon)) {
35 35
             copy(storage_path('app/'.$icon), storage_path('app/public/characteristics/'.$this->id.'.png'));
36 36
             $this->icon = 'public/characteristics/'.$this->id.'.png';
37 37
         }
Please login to merge, or discard this patch.