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