Test Failed
Pull Request — master (#78)
by guillaume
08:52 queued 49s
created
app/Src/UseCases/Infra/Sql/CharacteristicsRepositorySql.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -32,12 +32,12 @@  discard block
 block discarded – undo
32 32
         return $list->toArray();
33 33
     }
34 34
 
35
-    public function getByPageId(int $pageId):?Characteristic
35
+    public function getByPageId(int $pageId): ?Characteristic
36 36
     {
37 37
         $c = CharacteristicsModel::query()
38 38
             ->where('page_id', $pageId)
39 39
             ->first();
40
-        if(!isset($c)){
40
+        if (!isset($c)) {
41 41
             return null;
42 42
         }
43 43
         return $c->toDomain();
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      */
51 51
     public function add(array $cs)
52 52
     {
53
-        foreach ($cs as $c){
53
+        foreach ($cs as $c) {
54 54
             $cModel = new CharacteristicsModel();
55 55
             $cModel->fill($c);
56 56
             $cModel->save();
@@ -76,14 +76,14 @@  discard block
 block discarded – undo
76 76
     public function getBy(array $conditions): ?Characteristic
77 77
     {
78 78
         $characteristicModel = CharacteristicsModel::query()
79
-            ->when(isset($conditions['type']), function ($query) use($conditions){
79
+            ->when(isset($conditions['type']), function($query) use($conditions){
80 80
                 $query->where('type', $conditions['type']);
81 81
             })
82
-            ->when(isset($conditions['title']), function ($query) use($conditions){
82
+            ->when(isset($conditions['title']), function($query) use($conditions){
83 83
                 $query->where('code', $conditions['title']);
84 84
             })
85 85
             ->first();
86
-        if(!isset($characteristicModel)){
86
+        if (!isset($characteristicModel)) {
87 87
             return null;
88 88
         }
89 89
         return $characteristicModel->toDomain();
@@ -93,13 +93,13 @@  discard block
 block discarded – undo
93 93
     {
94 94
         $characteristicModel = CharacteristicsModel::query()
95 95
             ->where('type', $type)
96
-            ->where('pretty_page_label','LIKE', '%'.$search.'%')
96
+            ->where('pretty_page_label', 'LIKE', '%'.$search.'%')
97 97
             ->get();
98 98
 
99
-        if(!isset($characteristicModel)){
99
+        if (!isset($characteristicModel)) {
100 100
             return [];
101 101
         }
102
-        foreach ($characteristicModel as $characteristic){
102
+        foreach ($characteristicModel as $characteristic) {
103 103
             $characteristics[] = $characteristic->toArray();
104 104
         }
105 105
         return $characteristics ?? [];
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.
app/Src/UseCases/Domain/Context/Model/Page.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,17 +34,17 @@
 block discarded – undo
34 34
         return $this->pageId;
35 35
     }
36 36
 
37
-    public function title():?string
37
+    public function title(): ?string
38 38
     {
39 39
         return $this->title;
40 40
     }
41 41
 
42
-    public function type():?string
42
+    public function type(): ?string
43 43
     {
44 44
         return $this->type;
45 45
     }
46 46
 
47
-    public function icon():?string
47
+    public function icon(): ?string
48 48
     {
49 49
         return $this->icon;
50 50
     }
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Ports/CharacteristicsRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     public function getByType(string $type, bool $isMain):array;
12 12
     public function getAllByType(string $type):array;
13 13
     public function save(Characteristic $c);
14
-    public function getBy(array $conditions):?Characteristic;
14
+    public function getBy(array $conditions): ?Characteristic;
15 15
     public function search(string $type, string $search):array;
16
-    public function getByPageId(int $pageId):?Characteristic;
16
+    public function getByPageId(int $pageId): ?Characteristic;
17 17
 }
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Context/Model/CharacteristicMemento.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,12 +45,12 @@
 block discarded – undo
45 45
         return $this->visible;
46 46
     }
47 47
 
48
-    public function icon():? string
48
+    public function icon(): ? string
49 49
     {
50 50
         return $this->icon;
51 51
     }
52 52
 
53
-    public function pageId():? int
53
+    public function pageId(): ? int
54 54
     {
55 55
         return $this->pageId;
56 56
     }
Please login to merge, or discard this patch.
app/Http/Controllers/Profile/ProfileController.php 2 patches
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         $allCharacteristics = app(GetAllCharacteristics::class)->get();
36 36
         try {
37 37
             $context = $contextQueryByUser->execute(Auth::user()->uuid)->toArray();
38
-        }catch (\Throwable $e){
38
+        } catch (\Throwable $e){
39 39
             Log::emergency($e->getMessage().' '.$e->getLine().' '.$e->getFile().' '.$e->getTraceAsString());
40 40
             return redirect()->route('wizard.profile');
41 41
         }
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     {
67 67
         try {
68 68
             $user = app(GetUser::class)->get($userId)->toArray();
69
-        }catch (UserNotFound $e){
69
+        } catch (UserNotFound $e){
70 70
             throw new NotFoundHttpException();
71 71
         }
72 72
 
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         $allCharacteristics = app(GetAllCharacteristics::class)->get();
36 36
         try {
37 37
             $context = $contextQueryByUser->execute(Auth::user()->uuid)->toArray();
38
-        }catch (\Throwable $e){
38
+        } catch (\Throwable $e) {
39 39
             Log::emergency($e->getMessage().' '.$e->getLine().' '.$e->getFile().' '.$e->getTraceAsString());
40 40
             return redirect()->route('wizard.profile');
41 41
         }
@@ -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(InteractionsQueryByUser::class)->get(Auth::user()->uuid);
46
-        $usersCharacteristics =  array_merge($context['productions'], $context['characteristics'], $context['characteristicsDepartement']);
46
+        $usersCharacteristics = array_merge($context['productions'], $context['characteristics'], $context['characteristicsDepartement']);
47 47
         $uuidsUserCharacteristics = array_column($usersCharacteristics, 'uuid');
48 48
         $role = last($user['roles']);
49 49
         $routeComment = route('profile.comments.show');
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     {
69 69
         try {
70 70
             $user = app(GetUser::class)->get($userId)->toArray();
71
-        }catch (UserNotFound $e){
71
+        } catch (UserNotFound $e) {
72 72
             throw new NotFoundHttpException();
73 73
         }
74 74
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         $roles = app(GetUserRole::class)->get()->toArray();
78 78
         $practises = app(GetUserPractises::class)->get($userId);
79 79
         $interactions = app(InteractionsQueryByUser::class)->get($userId);
80
-        $usersCharacteristics =  array_merge($context['productions'], $context['characteristics']);
80
+        $usersCharacteristics = array_merge($context['productions'], $context['characteristics']);
81 81
         $uuidsUserCharacteristics = array_column($usersCharacteristics, 'uuid');
82 82
         $role = last($user['roles']);
83 83
 
@@ -143,9 +143,9 @@  discard block
 block discarded – undo
143 143
         $uri = config('wiki.api_uri').'?action=query&list=search&srwhat=text&srsearch='.$qry.'&srqiprofile=classic_noboostlinks&srnamespace=3000&format=json';
144 144
         $response = $client->get($uri);
145 145
         $content = json_decode($response->getBody()->getContents(), true);
146
-        if(isset($content['query']['search'])){
146
+        if (isset($content['query']['search'])) {
147 147
             $results = array_column($content['query']['search'], 'title');
148
-            return array_map(function ($item){
148
+            return array_map(function($item) {
149 149
                 return str_replace('Structure:', '', $item);
150 150
             }, $results);
151 151
         }
Please login to merge, or discard this patch.
app/Src/UseCases/Domain/Context/UseCases/AddCharacteristicsToContext.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,9 +38,9 @@
 block discarded – undo
38 38
         $pages = $this->pageRepository->getByIds($pagesIds);
39 39
 
40 40
         $characteristics = [];
41
-        foreach ($pages as $page){
41
+        foreach ($pages as $page) {
42 42
             $characteristic = $this->characteristicsRepository->getByPageId($page->pageId());
43
-            if(!isset($characteristic)){
43
+            if (!isset($characteristic)) {
44 44
                 $type = $page->type() === 'Culture' ? Characteristic::FARMING_TYPE : Characteristic::CROPPING_SYSTEM;
45 45
                 $characteristic = new Characteristic(
46 46
                     Uuid::uuid4(),
Please login to merge, or discard this patch.
app/Src/UseCases/Infra/Sql/InteractionPageRepositorySql.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
             ->where('page_id', $interaction->pageId())
27 27
             ->first();
28 28
 
29
-        if($interactionModel === null) {
29
+        if ($interactionModel === null) {
30 30
             $interactionModel = new InteractionModel();
31 31
             $interactionModel->{$canInteract->key()} = isset($user->id) ? $user->id : $canInteract->identifier();
32 32
         }
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
     public function getByInteractUser(CanInteract $canInteract, int $pageId): ?Interaction
40 40
     {
41
-        if($canInteract->key() == 'user_id') {
41
+        if ($canInteract->key() == 'user_id') {
42 42
             $user = User::query()->where('uuid', $canInteract->identifier())->first();
43 43
         }
44 44
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
             ->where('page_id', $pageId)
48 48
             ->first();
49 49
 
50
-        if(!isset($interactionModel)){
50
+        if (!isset($interactionModel)) {
51 51
             return null;
52 52
         }
53 53
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
             ->orderBy('updated_at', 'desc')
84 84
             ->get();
85 85
 
86
-        foreach($interactionsModel as $interaction) {
86
+        foreach ($interactionsModel as $interaction) {
87 87
             $page = PageModel::query()->where('page_id', $interaction->page_id)->first();
88 88
             $applause = InteractionModel::query()->where('page_id', $interaction->page_id)->where('applause', true)->count();
89 89
             if ($interaction->follow) {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             ->where('user_id', $user->id)
106 106
             ->where('done', true)
107 107
             ->get();
108
-        foreach ($records as $record){
108
+        foreach ($records as $record) {
109 109
             $practises[] = new PractiseVo(
110 110
                 $record->page_id,
111 111
                 $record->page->title ?? '',
@@ -134,15 +134,15 @@  discard block
 block discarded – undo
134 134
     {
135 135
         return  InteractionModel::query()
136 136
             ->with('user.context')
137
-            ->when($type == 'follow', function ($query) {
137
+            ->when($type == 'follow', function($query) {
138 138
                 $query->where('follow', true);
139 139
             })
140
-            ->when($type == 'do', function ($query) {
140
+            ->when($type == 'do', function($query) {
141 141
                 $query->where('done', true);
142 142
             })
143
-            ->when($characteristicId !== null, function ($query) use($characteristicId) {
143
+            ->when($characteristicId !== null, function($query) use($characteristicId) {
144 144
                 $characteristic = CharacteristicsModel::query()->where('uuid', $characteristicId)->first();
145
-                if(!isset($characteristic)){
145
+                if (!isset($characteristic)) {
146 146
                     return;
147 147
                 }
148 148
                 $query->whereRaw(
@@ -150,9 +150,9 @@  discard block
 block discarded – undo
150 150
                     $characteristic->id
151 151
                 );
152 152
             })
153
-            ->when($characteristicIdCroppingSystem !== null, function ($query) use($characteristicIdCroppingSystem) {
153
+            ->when($characteristicIdCroppingSystem !== null, function($query) use($characteristicIdCroppingSystem) {
154 154
                 $characteristic = CharacteristicsModel::query()->where('uuid', $characteristicIdCroppingSystem)->first();
155
-                if(!isset($characteristic)){
155
+                if (!isset($characteristic)) {
156 156
                     return;
157 157
                 }
158 158
                 $query->whereRaw(
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
                     $characteristic->id
161 161
                 );
162 162
             })
163
-            ->when($cp !== null, function ($query) use($cp) {
163
+            ->when($cp !== null, function($query) use($cp) {
164 164
                 $query->join('users', 'users.id', 'interactions.user_id')
165 165
                     ->join('contexts', 'users.context_id', 'contexts.id')
166 166
                     ->where('contexts.postal_code', $cp);
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
             ->where('page_id', $pageId)
169 169
             ->whereNotNull('interactions.user_id')
170 170
             ->paginate()
171
-            ->through(function ($item){
171
+            ->through(function($item) {
172 172
                 return $item->user->context->toDto();
173 173
             })
174 174
         ;
Please login to merge, or discard this patch.