Passed
Push — master ( 9c76a8...94f343 )
by Bertrand
34:04 queued 24:59
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/Src/UseCases/Infra/Sql/InteractionPageRepositorySql.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
      * @param string|null $characteristicIdCroppingSystem
127 127
      * @return Paginator
128 128
      *
129
-    */
129
+     */
130 130
     public function getFollowersPage(int $pageId, string $type = 'follow', ?string $departmentNumber = null, ?string $characteristicId = null, ?string $characteristicIdCroppingSystem = null): Paginator
131 131
     {
132 132
         return  InteractionModel::query()
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
@@ -187,7 +187,7 @@
 block discarded – undo
187 187
     {
188 188
         $user = \App\User::where('uuid', $userId)->first();
189 189
         if(!isset($user)){
190
-           return;
190
+            return;
191 191
         }
192 192
         $user->markEmailAsVerified();
193 193
     }
Please login to merge, or discard this patch.