summaryrefslogtreecommitdiffstats
path: root/lib/connector/sabre
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-09-30 10:03:07 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-09-30 10:03:07 +0200
commitaaba0d83b5e9f8b67a739e74172da9464fa562b0 (patch)
treed1e89f3a22e1e5edf0b41e3e08f4f07faf64d381 /lib/connector/sabre
parent952433eae6cdf15e8615b4da682b81f4537b0ba0 (diff)
downloadnextcloud-server-aaba0d83b5e9f8b67a739e74172da9464fa562b0.tar.gz
nextcloud-server-aaba0d83b5e9f8b67a739e74172da9464fa562b0.zip
fixing PHPDoc & typo
Diffstat (limited to 'lib/connector/sabre')
-rw-r--r--lib/connector/sabre/aborteduploaddetectionplugin.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/connector/sabre/aborteduploaddetectionplugin.php b/lib/connector/sabre/aborteduploaddetectionplugin.php
index 74c26f41b65..15dca3a6809 100644
--- a/lib/connector/sabre/aborteduploaddetectionplugin.php
+++ b/lib/connector/sabre/aborteduploaddetectionplugin.php
@@ -37,7 +37,6 @@ class OC_Connector_Sabre_AbortedUploadDetectionPlugin extends Sabre_DAV_ServerPl
* This method should set up the requires event subscriptions.
*
* @param Sabre_DAV_Server $server
- * @return void
*/
public function initialize(Sabre_DAV_Server $server) {
@@ -54,7 +53,7 @@ class OC_Connector_Sabre_AbortedUploadDetectionPlugin extends Sabre_DAV_ServerPl
*/
public function verifyContentLength($filePath, Sabre_DAV_INode $node = null) {
- // ownCloud chunked upload will be handled in it's own plugin
+ // ownCloud chunked upload will be handled in its own plugin
$chunkHeader = $this->server->httpRequest->getHeader('OC-Chunked');
if ($chunkHeader) {
return;