nextcloud/tests/lib/Comments/FakeFactory.php

19 lines
294 B
PHP
Raw Normal View History

<?php
2015-12-03 19:23:22 +03:00
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();
}
}