summaryrefslogtreecommitdiffstats
path: root/tests/lib/Comments/FakeFactory.php
blob: 257e7dad93bae6b91e439a63f4f3baca82a21027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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();
	}
}