Passed
Push — master ( 7dde96...3a8c6d )
by Luiz Kim
22:35 queued 14:20
created
src/Repository/TaskRepository.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
  */
15 15
 class TaskRepository extends ServiceEntityRepository
16 16
 {
17
-  public function __construct(ManagerRegistry $registry)
18
-  {
17
+    public function __construct(ManagerRegistry $registry)
18
+    {
19 19
     parent::__construct($registry, Task::class);
20
-  }
20
+    }
21 21
 }
Please login to merge, or discard this patch.
src/Repository/TaskInterationRepository.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
  */
15 15
 class TaskInterationRepository extends ServiceEntityRepository
16 16
 {
17
-  public function __construct(ManagerRegistry $registry)
18
-  {
17
+    public function __construct(ManagerRegistry $registry)
18
+    {
19 19
     parent::__construct($registry, TaskInteration::class);
20
-  }
20
+    }
21 21
 }
Please login to merge, or discard this patch.
src/Service/TaskInterationService.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,14 +10,14 @@
 block discarded – undo
10 10
 class TaskInterationService
11 11
 {
12 12
 
13
-  public function __construct(
13
+    public function __construct(
14 14
     private EntityManagerInterface $manager,
15 15
     private Security $security
16
-  ) {}
16
+    ) {}
17 17
 
18
-  public function prePersist(TaskInteration $taskInteration)
19
-  {
18
+    public function prePersist(TaskInteration $taskInteration)
19
+    {
20 20
     $taskInteration->setRegisteredBy($this->security->getUser()->getPeople());
21 21
     return  $taskInteration;
22
-  }
22
+    }
23 23
 }
Please login to merge, or discard this patch.