Test Setup Failed
Branch user/international-postal-code... (b53ac3)
by Bertrand
08:58
created
app/Src/UseCases/Domain/Users/Dto/GetUserRole.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function get()
9 9
     {
10
-         return collect([
10
+            return collect([
11 11
             new WikiUserRole('advisor'),
12 12
             new WikiUserRole('farmer'),
13 13
             new WikiUserRole('student'),
Please login to merge, or discard this patch.
app/Console/Commands/Debug/TestMailers.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     protected $description = 'Add email to newsletter';
14 14
 
15 15
     public function handle(SendinBlueService $sendinBlueService,
16
-                           MailerLiteService $mailerLiteService)
16
+                            MailerLiteService $mailerLiteService)
17 17
     {
18 18
         $email = $this->argument('email');
19 19
 
Please login to merge, or discard this patch.
app/Src/UseCases/Infra/Sql/UserRepositorySql.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@
 block discarded – undo
196 196
     {
197 197
         $user = \App\User::where('uuid', $userId)->first();
198 198
         if(!isset($user)){
199
-           return;
199
+            return;
200 200
         }
201 201
         if ($user->hasVerifiedEmail()) {
202 202
             return;
Please login to merge, or discard this patch.
app/Src/UseCases/Infra/Sql/InteractionPageRepositorySql.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
      * @param string|null $characteristicIdCroppingSystem
157 157
      * @return Paginator
158 158
      *
159
-    */
159
+     */
160 160
     public function getFollowersPage(int $pageId, string $type = 'follow', ?string $departmentNumber = null, ?string $characteristicId = null, ?string $characteristicIdCroppingSystem = null, ?string $wikiCode = null): Paginator
161 161
     {
162 162
         return  InteractionModel::query()
Please login to merge, or discard this patch.