2015-11-23 17:53:55 -05:00
|
|
|
<?php
|
|
|
|
|
|
2015-12-03 11:23:22 -05:00
|
|
|
namespace Test\Comments;
|
|
|
|
|
|
2016-01-19 10:17:49 -05:00
|
|
|
use OCP\IServerContainer;
|
|
|
|
|
|
2015-11-23 17:53:55 -05:00
|
|
|
/**
|
2015-12-03 15:53:58 -05:00
|
|
|
* Class FakeFactory
|
2015-11-23 17:53:55 -05:00
|
|
|
*/
|
2015-12-03 15:53:58 -05:00
|
|
|
class FakeFactory implements \OCP\Comments\ICommentsManagerFactory {
|
2016-01-19 10:17:49 -05:00
|
|
|
public function __construct(IServerContainer $serverContainer) {
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-23 17:53:55 -05:00
|
|
|
public function getManager() {
|
2015-12-03 15:53:58 -05:00
|
|
|
return new FakeManager();
|
2015-12-03 10:35:57 -05:00
|
|
|
}
|
2015-11-23 17:53:55 -05:00
|
|
|
}
|