2015-11-23 22:53:55 +00:00
|
|
|
<?php
|
|
|
|
|
2015-12-03 16:23:22 +00:00
|
|
|
namespace Test\Comments;
|
|
|
|
|
2015-11-23 22:53:55 +00:00
|
|
|
/**
|
2015-12-03 20:53:58 +00:00
|
|
|
* Class FakeFactory
|
2015-11-23 22:53:55 +00:00
|
|
|
*/
|
2015-12-03 20:53:58 +00:00
|
|
|
class FakeFactory implements \OCP\Comments\ICommentsManagerFactory {
|
2015-11-23 22:53:55 +00:00
|
|
|
|
|
|
|
public function getManager() {
|
2015-12-03 20:53:58 +00:00
|
|
|
return new FakeManager();
|
2015-12-03 15:35:57 +00:00
|
|
|
}
|
2015-11-23 22:53:55 +00:00
|
|
|
}
|