Completed
Push — master ( b7a0cb...746c52 )
by Rai
03:01
created
src/Lumen/Traits/Tests/Services/CreateTrait.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,10 +7,10 @@
 block discarded – undo
7 7
     public function testStore()
8 8
     {
9 9
         $entity = $this->getRepositoryTest()
10
-                       ->getFlushedMockObject();
10
+                        ->getFlushedMockObject();
11 11
 
12 12
         $repository = $this->getService()
13
-                           ->getMainRepository();
13
+                            ->getMainRepository();
14 14
 
15 15
         $find = $repository->find($entity->getId());
16 16
 
Please login to merge, or discard this patch.
src/Lumen/Traits/Tests/Services/ReadTrait.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
     public function testFindAll()
8 8
     {
9 9
         $entity = $this->getRepositoryTest()
10
-                       ->getFlushedMockObject();
10
+                        ->getFlushedMockObject();
11 11
 
12 12
         $findAll = $this->getService()->findAll()->getResult();
13 13
 
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     public function testFind()
19 19
     {
20 20
         $entity = $this->getRepositoryTest()
21
-                       ->getFlushedMockObject();
21
+                        ->getFlushedMockObject();
22 22
 
23 23
         $find = $this->getService()->find($entity->getId());
24 24
 
Please login to merge, or discard this patch.
src/Lumen/Traits/Tests/Services/DeleteTrait.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@
 block discarded – undo
10 10
     public function testRemove()
11 11
     {
12 12
         $entity = $this->getRepositoryTest()
13
-                       ->getFlushedMockObject();
13
+                        ->getFlushedMockObject();
14 14
 
15 15
         $this->getService()
16
-             ->remove($entity->getId())
17
-             ->flush();
16
+                ->remove($entity->getId())
17
+                ->flush();
18 18
 
19 19
         $find = $this->getService()->getMainRepository()->find($entity->getId());
20 20
     }
Please login to merge, or discard this patch.