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