@@ -29,12 +29,12 @@ |
||
29 | 29 | * @since 12.0.0 |
30 | 30 | */ |
31 | 31 | interface IRenameChange extends IChange { |
32 | - /** |
|
33 | - * Get the new path of the renamed file relative to the storage root |
|
34 | - * |
|
35 | - * @return string |
|
36 | - * |
|
37 | - * @since 12.0.0 |
|
38 | - */ |
|
39 | - public function getTargetPath(); |
|
32 | + /** |
|
33 | + * Get the new path of the renamed file relative to the storage root |
|
34 | + * |
|
35 | + * @return string |
|
36 | + * |
|
37 | + * @since 12.0.0 |
|
38 | + */ |
|
39 | + public function getTargetPath(); |
|
40 | 40 | } |
@@ -30,47 +30,47 @@ |
||
30 | 30 | * @since 9.0.0 |
31 | 31 | */ |
32 | 32 | interface IUpdater { |
33 | - /** |
|
34 | - * Get the propagator for etags and mtime for the view the updater works on |
|
35 | - * |
|
36 | - * @return IPropagator |
|
37 | - * @since 9.0.0 |
|
38 | - */ |
|
39 | - public function getPropagator(); |
|
33 | + /** |
|
34 | + * Get the propagator for etags and mtime for the view the updater works on |
|
35 | + * |
|
36 | + * @return IPropagator |
|
37 | + * @since 9.0.0 |
|
38 | + */ |
|
39 | + public function getPropagator(); |
|
40 | 40 | |
41 | - /** |
|
42 | - * Propagate etag and mtime changes for the parent folders of $path up to the root of the filesystem |
|
43 | - * |
|
44 | - * @param string $path the path of the file to propagate the changes for |
|
45 | - * @param int|null $time the timestamp to set as mtime for the parent folders, if left out the current time is used |
|
46 | - * @since 9.0.0 |
|
47 | - */ |
|
48 | - public function propagate($path, $time = null); |
|
41 | + /** |
|
42 | + * Propagate etag and mtime changes for the parent folders of $path up to the root of the filesystem |
|
43 | + * |
|
44 | + * @param string $path the path of the file to propagate the changes for |
|
45 | + * @param int|null $time the timestamp to set as mtime for the parent folders, if left out the current time is used |
|
46 | + * @since 9.0.0 |
|
47 | + */ |
|
48 | + public function propagate($path, $time = null); |
|
49 | 49 | |
50 | - /** |
|
51 | - * Update the cache for $path and update the size, etag and mtime of the parent folders |
|
52 | - * |
|
53 | - * @param string $path |
|
54 | - * @param int $time |
|
55 | - * @since 9.0.0 |
|
56 | - */ |
|
57 | - public function update($path, $time = null); |
|
50 | + /** |
|
51 | + * Update the cache for $path and update the size, etag and mtime of the parent folders |
|
52 | + * |
|
53 | + * @param string $path |
|
54 | + * @param int $time |
|
55 | + * @since 9.0.0 |
|
56 | + */ |
|
57 | + public function update($path, $time = null); |
|
58 | 58 | |
59 | - /** |
|
60 | - * Remove $path from the cache and update the size, etag and mtime of the parent folders |
|
61 | - * |
|
62 | - * @param string $path |
|
63 | - * @since 9.0.0 |
|
64 | - */ |
|
65 | - public function remove($path); |
|
59 | + /** |
|
60 | + * Remove $path from the cache and update the size, etag and mtime of the parent folders |
|
61 | + * |
|
62 | + * @param string $path |
|
63 | + * @since 9.0.0 |
|
64 | + */ |
|
65 | + public function remove($path); |
|
66 | 66 | |
67 | - /** |
|
68 | - * Rename a file or folder in the cache and update the size, etag and mtime of the parent folders |
|
69 | - * |
|
70 | - * @param IStorage $sourceStorage |
|
71 | - * @param string $source |
|
72 | - * @param string $target |
|
73 | - * @since 9.0.0 |
|
74 | - */ |
|
75 | - public function renameFromStorage(IStorage $sourceStorage, $source, $target); |
|
67 | + /** |
|
68 | + * Rename a file or folder in the cache and update the size, etag and mtime of the parent folders |
|
69 | + * |
|
70 | + * @param IStorage $sourceStorage |
|
71 | + * @param string $source |
|
72 | + * @param string $target |
|
73 | + * @since 9.0.0 |
|
74 | + */ |
|
75 | + public function renameFromStorage(IStorage $sourceStorage, $source, $target); |
|
76 | 76 | } |
@@ -28,29 +28,29 @@ |
||
28 | 28 | * @since 9.0.0 |
29 | 29 | */ |
30 | 30 | interface IPropagator { |
31 | - /** |
|
32 | - * Mark the beginning of a propagation batch |
|
33 | - * |
|
34 | - * Note that not all cache setups support propagation in which case this will be a noop |
|
35 | - * |
|
36 | - * Batching for cache setups that do support it has to be explicit since the cache state is not fully consistent |
|
37 | - * before the batch is committed. |
|
38 | - * |
|
39 | - * @since 9.1.0 |
|
40 | - */ |
|
41 | - public function beginBatch(); |
|
31 | + /** |
|
32 | + * Mark the beginning of a propagation batch |
|
33 | + * |
|
34 | + * Note that not all cache setups support propagation in which case this will be a noop |
|
35 | + * |
|
36 | + * Batching for cache setups that do support it has to be explicit since the cache state is not fully consistent |
|
37 | + * before the batch is committed. |
|
38 | + * |
|
39 | + * @since 9.1.0 |
|
40 | + */ |
|
41 | + public function beginBatch(); |
|
42 | 42 | |
43 | - /** |
|
44 | - * Commit the active propagation batch |
|
45 | - * |
|
46 | - * @since 9.1.0 |
|
47 | - */ |
|
48 | - public function commitBatch(); |
|
43 | + /** |
|
44 | + * Commit the active propagation batch |
|
45 | + * |
|
46 | + * @since 9.1.0 |
|
47 | + */ |
|
48 | + public function commitBatch(); |
|
49 | 49 | |
50 | - /** |
|
51 | - * @param string $internalPath |
|
52 | - * @param int $time |
|
53 | - * @since 9.0.0 |
|
54 | - */ |
|
55 | - public function propagateChange($internalPath, $time); |
|
50 | + /** |
|
51 | + * @param string $internalPath |
|
52 | + * @param int $time |
|
53 | + * @since 9.0.0 |
|
54 | + */ |
|
55 | + public function propagateChange($internalPath, $time); |
|
56 | 56 | } |
@@ -29,17 +29,17 @@ |
||
29 | 29 | * @since 11.0.0 |
30 | 30 | */ |
31 | 31 | interface IDeletionFlagSupport { |
32 | - /** |
|
33 | - * Flag record for deletion. |
|
34 | - * @param string $uid user id |
|
35 | - * @since 11.0.0 |
|
36 | - */ |
|
37 | - public function flagRecord($uid); |
|
32 | + /** |
|
33 | + * Flag record for deletion. |
|
34 | + * @param string $uid user id |
|
35 | + * @since 11.0.0 |
|
36 | + */ |
|
37 | + public function flagRecord($uid); |
|
38 | 38 | |
39 | - /** |
|
40 | - * Unflag record for deletion. |
|
41 | - * @param string $uid user id |
|
42 | - * @since 11.0.0 |
|
43 | - */ |
|
44 | - public function unflagRecord($uid); |
|
39 | + /** |
|
40 | + * Unflag record for deletion. |
|
41 | + * @param string $uid user id |
|
42 | + * @since 11.0.0 |
|
43 | + */ |
|
44 | + public function unflagRecord($uid); |
|
45 | 45 | } |
@@ -39,46 +39,46 @@ |
||
39 | 39 | */ |
40 | 40 | interface ICache { |
41 | 41 | |
42 | - /** |
|
43 | - * Get a value from the user cache |
|
44 | - * @param string $key |
|
45 | - * @return mixed |
|
46 | - * @since 6.0.0 |
|
47 | - */ |
|
48 | - public function get($key); |
|
42 | + /** |
|
43 | + * Get a value from the user cache |
|
44 | + * @param string $key |
|
45 | + * @return mixed |
|
46 | + * @since 6.0.0 |
|
47 | + */ |
|
48 | + public function get($key); |
|
49 | 49 | |
50 | - /** |
|
51 | - * Set a value in the user cache |
|
52 | - * @param string $key |
|
53 | - * @param mixed $value |
|
54 | - * @param int $ttl Time To Live in seconds. Defaults to 60*60*24 |
|
55 | - * @return bool |
|
56 | - * @since 6.0.0 |
|
57 | - */ |
|
58 | - public function set($key, $value, $ttl = 0); |
|
50 | + /** |
|
51 | + * Set a value in the user cache |
|
52 | + * @param string $key |
|
53 | + * @param mixed $value |
|
54 | + * @param int $ttl Time To Live in seconds. Defaults to 60*60*24 |
|
55 | + * @return bool |
|
56 | + * @since 6.0.0 |
|
57 | + */ |
|
58 | + public function set($key, $value, $ttl = 0); |
|
59 | 59 | |
60 | - /** |
|
61 | - * Check if a value is set in the user cache |
|
62 | - * @param string $key |
|
63 | - * @return bool |
|
64 | - * @since 6.0.0 |
|
65 | - * @deprecated 9.1.0 Directly read from GET to prevent race conditions |
|
66 | - */ |
|
67 | - public function hasKey($key); |
|
60 | + /** |
|
61 | + * Check if a value is set in the user cache |
|
62 | + * @param string $key |
|
63 | + * @return bool |
|
64 | + * @since 6.0.0 |
|
65 | + * @deprecated 9.1.0 Directly read from GET to prevent race conditions |
|
66 | + */ |
|
67 | + public function hasKey($key); |
|
68 | 68 | |
69 | - /** |
|
70 | - * Remove an item from the user cache |
|
71 | - * @param string $key |
|
72 | - * @return bool |
|
73 | - * @since 6.0.0 |
|
74 | - */ |
|
75 | - public function remove($key); |
|
69 | + /** |
|
70 | + * Remove an item from the user cache |
|
71 | + * @param string $key |
|
72 | + * @return bool |
|
73 | + * @since 6.0.0 |
|
74 | + */ |
|
75 | + public function remove($key); |
|
76 | 76 | |
77 | - /** |
|
78 | - * Clear the user cache of all entries starting with a prefix |
|
79 | - * @param string $prefix (optional) |
|
80 | - * @return bool |
|
81 | - * @since 6.0.0 |
|
82 | - */ |
|
83 | - public function clear($prefix = ''); |
|
77 | + /** |
|
78 | + * Clear the user cache of all entries starting with a prefix |
|
79 | + * @param string $prefix (optional) |
|
80 | + * @return bool |
|
81 | + * @since 6.0.0 |
|
82 | + */ |
|
83 | + public function clear($prefix = ''); |
|
84 | 84 | } |
@@ -27,12 +27,12 @@ |
||
27 | 27 | * @since 8.2.0 |
28 | 28 | */ |
29 | 29 | class AutoloadNotAllowedException extends \DomainException { |
30 | - /** |
|
31 | - * @param string $path |
|
32 | - * @since 8.2.0 |
|
33 | - */ |
|
34 | - public function __construct($path) { |
|
35 | - parent::__construct('Autoload path not allowed: '.$path); |
|
36 | - } |
|
30 | + /** |
|
31 | + * @param string $path |
|
32 | + * @since 8.2.0 |
|
33 | + */ |
|
34 | + public function __construct($path) { |
|
35 | + parent::__construct('Autoload path not allowed: '.$path); |
|
36 | + } |
|
37 | 37 | } |
38 | 38 |
@@ -25,26 +25,26 @@ |
||
25 | 25 | * @since 9.2 |
26 | 26 | */ |
27 | 27 | interface ILockdownManager { |
28 | - /** |
|
29 | - * Enable the lockdown restrictions |
|
30 | - * |
|
31 | - * @since 9.2 |
|
32 | - */ |
|
33 | - public function enable(); |
|
28 | + /** |
|
29 | + * Enable the lockdown restrictions |
|
30 | + * |
|
31 | + * @since 9.2 |
|
32 | + */ |
|
33 | + public function enable(); |
|
34 | 34 | |
35 | - /** |
|
36 | - * Set the active token to get the restrictions from and enable the lockdown |
|
37 | - * |
|
38 | - * @param IToken $token |
|
39 | - * @since 9.2 |
|
40 | - */ |
|
41 | - public function setToken(IToken $token); |
|
35 | + /** |
|
36 | + * Set the active token to get the restrictions from and enable the lockdown |
|
37 | + * |
|
38 | + * @param IToken $token |
|
39 | + * @since 9.2 |
|
40 | + */ |
|
41 | + public function setToken(IToken $token); |
|
42 | 42 | |
43 | - /** |
|
44 | - * Check whether or not filesystem access is allowed |
|
45 | - * |
|
46 | - * @return bool |
|
47 | - * @since 9.2 |
|
48 | - */ |
|
49 | - public function canAccessFilesystem(); |
|
43 | + /** |
|
44 | + * Check whether or not filesystem access is allowed |
|
45 | + * |
|
46 | + * @return bool |
|
47 | + * @since 9.2 |
|
48 | + */ |
|
49 | + public function canAccessFilesystem(); |
|
50 | 50 | } |
@@ -31,11 +31,11 @@ |
||
31 | 31 | * @since 5.0.0 |
32 | 32 | */ |
33 | 33 | interface Share_Backend_Collection extends Share_Backend { |
34 | - /** |
|
35 | - * Get the sources of the children of the item |
|
36 | - * @param string $itemSource |
|
37 | - * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable |
|
38 | - * @since 5.0.0 |
|
39 | - */ |
|
40 | - public function getChildren($itemSource); |
|
34 | + /** |
|
35 | + * Get the sources of the children of the item |
|
36 | + * @param string $itemSource |
|
37 | + * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable |
|
38 | + * @since 5.0.0 |
|
39 | + */ |
|
40 | + public function getChildren($itemSource); |
|
41 | 41 | } |
@@ -29,36 +29,36 @@ |
||
29 | 29 | * @since 8.0.0 |
30 | 30 | */ |
31 | 31 | class DataDownloadResponse extends DownloadResponse { |
32 | - /** |
|
33 | - * @var string |
|
34 | - */ |
|
35 | - private $data; |
|
32 | + /** |
|
33 | + * @var string |
|
34 | + */ |
|
35 | + private $data; |
|
36 | 36 | |
37 | - /** |
|
38 | - * Creates a response that prompts the user to download the text |
|
39 | - * @param string $data text to be downloaded |
|
40 | - * @param string $filename the name that the downloaded file should have |
|
41 | - * @param string $contentType the mimetype that the downloaded file should have |
|
42 | - * @since 8.0.0 |
|
43 | - */ |
|
44 | - public function __construct($data, $filename, $contentType) { |
|
45 | - $this->data = $data; |
|
46 | - parent::__construct($filename, $contentType); |
|
47 | - } |
|
37 | + /** |
|
38 | + * Creates a response that prompts the user to download the text |
|
39 | + * @param string $data text to be downloaded |
|
40 | + * @param string $filename the name that the downloaded file should have |
|
41 | + * @param string $contentType the mimetype that the downloaded file should have |
|
42 | + * @since 8.0.0 |
|
43 | + */ |
|
44 | + public function __construct($data, $filename, $contentType) { |
|
45 | + $this->data = $data; |
|
46 | + parent::__construct($filename, $contentType); |
|
47 | + } |
|
48 | 48 | |
49 | - /** |
|
50 | - * @param string $data |
|
51 | - * @since 8.0.0 |
|
52 | - */ |
|
53 | - public function setData($data) { |
|
54 | - $this->data = $data; |
|
55 | - } |
|
49 | + /** |
|
50 | + * @param string $data |
|
51 | + * @since 8.0.0 |
|
52 | + */ |
|
53 | + public function setData($data) { |
|
54 | + $this->data = $data; |
|
55 | + } |
|
56 | 56 | |
57 | - /** |
|
58 | - * @return string |
|
59 | - * @since 8.0.0 |
|
60 | - */ |
|
61 | - public function render() { |
|
62 | - return $this->data; |
|
63 | - } |
|
57 | + /** |
|
58 | + * @return string |
|
59 | + * @since 8.0.0 |
|
60 | + */ |
|
61 | + public function render() { |
|
62 | + return $this->data; |
|
63 | + } |
|
64 | 64 | } |