File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -72,8 +72,6 @@ class ManagerTest extends \Test\TestCase {
7272 protected $ logger ;
7373 /** @var IConfig|MockObject */
7474 protected $ config ;
75- /** @var IAppConfig|MockObject */
76- protected $ appConfig ;
7775 /** @var ISecureRandom|MockObject */
7876 protected $ secureRandom ;
7977 /** @var IHasher|MockObject */
@@ -117,7 +115,6 @@ class ManagerTest extends \Test\TestCase {
117115 protected function setUp (): void {
118116 $ this ->logger = $ this ->createMock (LoggerInterface::class);
119117 $ this ->config = $ this ->createMock (IConfig::class);
120- $ this ->appConfig = $ this ->createMock (IAppConfig::class);
121118 $ this ->secureRandom = $ this ->createMock (ISecureRandom::class);
122119 $ this ->hasher = $ this ->createMock (IHasher::class);
123120 $ this ->mountManager = $ this ->createMock (IMountManager::class);
@@ -163,7 +160,6 @@ private function createManager(IProviderFactory $factory): Manager {
163160 return new Manager (
164161 $ this ->logger ,
165162 $ this ->config ,
166- $ this ->appConfig ,
167163 $ this ->secureRandom ,
168164 $ this ->hasher ,
169165 $ this ->mountManager ,
@@ -192,7 +188,6 @@ private function createManagerMock() {
192188 ->setConstructorArgs ([
193189 $ this ->logger ,
194190 $ this ->config ,
195- $ this ->appConfig ,
196191 $ this ->secureRandom ,
197192 $ this ->hasher ,
198193 $ this ->mountManager ,
You can’t perform that action at this time.
0 commit comments