mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Fix PHPDoc
This commit is contained in:
parent
c1ae8b0d81
commit
7199ea2f5e
1 changed files with 7 additions and 5 deletions
|
|
@ -31,18 +31,19 @@ class Backend {
|
|||
|
||||
/** @var IDBConnection */
|
||||
private $db;
|
||||
/** @var Principal */
|
||||
private $principalBackend;
|
||||
/** @var string */
|
||||
private $resourceType;
|
||||
|
||||
const ACCESS_OWNER = 1;
|
||||
const ACCESS_READ_WRITE = 2;
|
||||
const ACCESS_READ = 3;
|
||||
|
||||
/** @var string */
|
||||
private $resourceType;
|
||||
|
||||
/**
|
||||
* CardDavBackend constructor.
|
||||
*
|
||||
* @param IDBConnection $db
|
||||
* @param Principal $principalBackend
|
||||
* @param string $resourceType
|
||||
*/
|
||||
public function __construct(IDBConnection $db, Principal $principalBackend, $resourceType) {
|
||||
$this->db = $db;
|
||||
|
|
@ -143,6 +144,7 @@ class Backend {
|
|||
* * readOnly - boolean
|
||||
* * summary - Optional, a description for the share
|
||||
*
|
||||
* @param int $resourceId
|
||||
* @return array
|
||||
*/
|
||||
public function getShares($resourceId) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue