nextcloud/tests/lib/comments/fakefactory.php

14 lines
197 B
PHP

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