Files
monica/app/Http/Controllers/DAV/Backend/IDAVBackend.php
T
2019-01-23 14:39:44 +01:00

36 lines
636 B
PHP

<?php
namespace App\Http\Controllers\DAV\Backend;
interface IDAVBackend
{
/**
* Returns the uri for this backend.
*
* @return string
*/
public function backendUri();
/**
* Returns the object for the specific uuid.
*
* @param string $uri
* @return mixed
*/
public function getObjectUuid($uuid);
/**
* Returns the collection of objects.
*
* @return \Illuminate\Support\Collection
*/
public function getObjects();
/**
* Returns the extension for this backend.
*
* @return string
*/
public function getExtension();
}