summaryrefslogtreecommitdiffstats
path: root/tests/lib/comments/fakefactory.php
blob: ff8dfd3a259d4e7f56782e064e6213863793c49b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace Test\Comments;

use OCP\IServerContainer;

/**
 * Class FakeFactory
 */
class FakeFactory implements \OCP\Comments\ICommentsManagerFactory {

	public function __construct(IServerContainer $serverContainer) {
	}

	public function getManager() {
		return new FakeManager();
	}
}