2015-11-23 17:53:55 -05:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2024-05-10 09:09:14 -04:00
|
|
|
/**
|
|
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
*/
|
2015-12-03 11:23:22 -05:00
|
|
|
namespace Test\Comments;
|
|
|
|
|
|
2025-06-12 12:31:58 -04:00
|
|
|
use OCP\Comments\ICommentsManagerFactory;
|
2016-01-19 10:17:49 -05:00
|
|
|
use OCP\IServerContainer;
|
|
|
|
|
|
2015-11-23 17:53:55 -05:00
|
|
|
/**
|
2015-12-03 15:53:58 -05:00
|
|
|
* Class FakeFactory
|
2015-11-23 17:53:55 -05:00
|
|
|
*/
|
2025-06-12 12:31:58 -04:00
|
|
|
class FakeFactory implements ICommentsManagerFactory {
|
2016-01-19 10:17:49 -05:00
|
|
|
public function __construct(IServerContainer $serverContainer) {
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-23 17:53:55 -05:00
|
|
|
public function getManager() {
|
2015-12-03 15:53:58 -05:00
|
|
|
return new FakeManager();
|
2015-12-03 10:35:57 -05:00
|
|
|
}
|
2015-11-23 17:53:55 -05:00
|
|
|
}
|