summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Service/ItemServiceTest.php
diff options
context:
space:
mode:
authorMarco Nassabain <marco.nassabain@hotmail.com>2021-03-05 22:14:56 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-04-08 22:31:21 +0200
commit2cba1e4146221f28ac195f62fbbb6cd9dbb555fd (patch)
tree1ed604e762801d196cc59f5bd1c0d159e195c74c /tests/Unit/Service/ItemServiceTest.php
parent4612ed9bf0115d328d22beecb07179f3ae8f460d (diff)
🧹 Cleanup code, remove spaces, rename variables
Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
Diffstat (limited to 'tests/Unit/Service/ItemServiceTest.php')
-rw-r--r--tests/Unit/Service/ItemServiceTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/Unit/Service/ItemServiceTest.php b/tests/Unit/Service/ItemServiceTest.php
index b1cbe6d8d..f91692cda 100644
--- a/tests/Unit/Service/ItemServiceTest.php
+++ b/tests/Unit/Service/ItemServiceTest.php
@@ -41,7 +41,6 @@ class ItemServiceTest extends TestCase
* @var MockObject|ItemMapperV2
*/
private $mapper;
-
/**
* @var ItemServiceV2
*/
@@ -71,7 +70,6 @@ class ItemServiceTest extends TestCase
$this->mapper = $this->getMockBuilder(ItemMapperV2::class)
->disableOriginalConstructor()
->getMock();
-
$this->config = $this->getMockBuilder(IConfig::class)
->disableOriginalConstructor()
->getMock();
@@ -631,4 +629,5 @@ class ItemServiceTest extends TestCase
$this->class->purgeOverThreshold(5);
}
+
}