Files
nextcloud-server-mirror/tests/lib/comments/fakefactory.php
T
2015-12-09 14:34:23 +01:00

14 lines
197 B
PHP

<?php
namespace Test\Comments;
/**
* Class FakeFactory
*/
class FakeFactory implements \OCP\Comments\ICommentsManagerFactory {
public function getManager() {
return new FakeManager();
}
}