This commit is contained in:
Bernhard Posselt 2014-05-12 23:31:39 +02:00
Родитель 27fe2a04ee
Коммит dc6b021857
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -14,5 +14,9 @@
namespace OCA\News\Db;
interface IMapper {
/**
* @param int $id the id of the feed
* @param string $userId the id of the user
*/
public function find($id, $userId);
}