nextcloud/tests/lib/Comments/FakeFactory.php

18 lines
293 B
PHP

<?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();
}
}