Add PHP doc
This commit is contained in:
parent
a4eb8f5f07
commit
6e7818a967
@ -11,6 +11,10 @@
|
||||
|
||||
namespace OCA\Documents;
|
||||
|
||||
/**
|
||||
* Generic DB class
|
||||
*/
|
||||
|
||||
class Db {
|
||||
/**
|
||||
* Build placeholders for the query with variable input data
|
||||
|
@ -11,6 +11,9 @@
|
||||
|
||||
namespace OCA\Documents;
|
||||
|
||||
/**
|
||||
* Generic download class
|
||||
*/
|
||||
class Download {
|
||||
|
||||
/**
|
||||
@ -25,6 +28,10 @@ class Download {
|
||||
*/
|
||||
protected $filepath;
|
||||
|
||||
/**
|
||||
* Subclassed object
|
||||
* @var
|
||||
*/
|
||||
protected $instance;
|
||||
|
||||
/**
|
||||
|
@ -11,6 +11,9 @@
|
||||
|
||||
namespace OCA\Documents;
|
||||
|
||||
/**
|
||||
* Class processing range HTTP request (partial download)
|
||||
*/
|
||||
class Download_Range extends \OCA\Documents\Download {
|
||||
|
||||
// Start of the range
|
||||
|
@ -11,6 +11,9 @@
|
||||
|
||||
namespace OCA\Documents;
|
||||
|
||||
/**
|
||||
* Class processing complete download
|
||||
*/
|
||||
class Download_Simple extends \OCA\Documents\Download {
|
||||
|
||||
public function __construct($view, $filepath){
|
||||
|
Loading…
x
Reference in New Issue
Block a user