1
0
Mirror von https://github.com/nextcloud/server.git synchronisiert 2024-08-11 02:11:21 +02:00
nextcloud/tests/lib/Comments/FakeFactory.php
Joas Schilling 94ad54ec9b Move tests/ to PSR-4 (#24731)
* Move a-b to PSR-4

* Move c-d to PSR-4

* Move e+g to PSR-4

* Move h-l to PSR-4

* Move m-r to PSR-4

* Move s-u to PSR-4

* Move files/ to PSR-4

* Move remaining tests to PSR-4

* Remove Test\ from old autoloader
2016-05-20 15:38:20 +02:00

19 Zeilen
294 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();
}
}