nextcloud/tests/lib/Comments/FakeManager.php
Christoph Wurst caff1023ea
Format control structures, classes, methods and function
To continue this formatting madness, here's a tiny patch that adds
unified formatting for control structures like if and loops as well as
classes, their methods and anonymous functions. This basically forces
the constructs to start on the same line. This is not exactly what PSR2
wants, but I think we can have a few exceptions with "our" style. The
starting of braces on the same line is pracrically standard for our
code.

This also removes and empty lines from method/function bodies at the
beginning and end.

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-10 14:19:56 +02:00

87 lines
1.7 KiB
PHP

<?php
namespace Test\Comments;
use OCP\Comments\IComment;
use OCP\Comments\ICommentsManager;
use OCP\IUser;
/**
* Class FakeManager
*/
class FakeManager implements 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 getForObjectSince(
string $objectType,
string $objectId,
int $lastKnownCommentId,
string $sortDirection = 'asc',
int $limit = 30
): array {
return [];
}
public function getNumberOfCommentsForObject($objectType, $objectId, \DateTime $notOlderThan = null, $verb = '') {
}
public function search(string $search, string $objectType, string $objectId, string $verb, int $offset, int $limit = 50): array {
return [];
}
public function create($actorType, $actorId, $objectType, $objectId) {
}
public function delete($id) {
}
public function save(IComment $comment) {
}
public function deleteReferencesOfActor($actorType, $actorId) {
}
public function deleteCommentsAtObject($objectType, $objectId) {
}
public function setReadMark($objectType, $objectId, \DateTime $dateTime, IUser $user) {
}
public function getReadMark($objectType, $objectId, IUser $user) {
}
public function deleteReadMarksFromUser(IUser $user) {
}
public function deleteReadMarksOnObject($objectType, $objectId) {
}
public function registerEventHandler(\Closure $closure) {
}
public function registerDisplayNameResolver($type, \Closure $closure) {
}
public function resolveDisplayName($type, $id) {
}
public function getNumberOfUnreadCommentsForFolder($folderId, IUser $user) {
}
public function getActorsInTree($id) {
}
}