blob: 837bcb10585e7fb70bbd8aaf13ae3a74a758dd1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
namespace Test\Comments;
/**
* Class FakeFactory
*/
class FakeFactory implements \OCP\Comments\ICommentsManagerFactory {
public function getManager() {
return new FakeManager();
}
}
|