blob: a3cd9c0c064e2f9e3769c5a4a179b3015b7934f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php
namespace Test\Comments;
/**
* Class FakeManager
*/
class FakeManager implements \OCP\Comments\ICommentsManager {
public function get($id) {}
public function getTree($id, $limit = 0, $offset = 0) {}
public function getForObject(
$objectType,
$objectId,
$limit = 0,
$offset = 0,
\DateTime $notOlderThan = null
) {}
public function getNumberOfCommentsForObject($objectType, $objectId) {}
public function create($actorType, $actorId, $objectType, $objectId) {}
public function delete($id) {}
public function save(\OCP\Comments\IComment &$comment) {}
public function deleteReferencesOfActor($actorType, $actorId) {}
public function deleteCommentsAtObject($objectType, $objectId) {}
}
|