aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/lib/DAV/Browser/Plugin.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sabre/dav/lib/DAV/Browser/Plugin.php')
-rw-r--r--vendor/sabre/dav/lib/DAV/Browser/Plugin.php17
1 files changed, 15 insertions, 2 deletions
diff --git a/vendor/sabre/dav/lib/DAV/Browser/Plugin.php b/vendor/sabre/dav/lib/DAV/Browser/Plugin.php
index 915f2895b..e2fab4b79 100644
--- a/vendor/sabre/dav/lib/DAV/Browser/Plugin.php
+++ b/vendor/sabre/dav/lib/DAV/Browser/Plugin.php
@@ -70,6 +70,8 @@ class Plugin extends DAV\ServerPlugin
/**
* Initializes the plugin and subscribes to events.
+ *
+ * @param DAV\Server $server
*/
public function initialize(DAV\Server $server)
{
@@ -86,6 +88,9 @@ class Plugin extends DAV\ServerPlugin
* This method intercepts GET requests that have ?sabreAction=info
* appended to the URL.
*
+ * @param RequestInterface $request
+ * @param ResponseInterface $response
+ *
* @return bool
*/
public function httpGetEarly(RequestInterface $request, ResponseInterface $response)
@@ -99,6 +104,9 @@ class Plugin extends DAV\ServerPlugin
/**
* This method intercepts GET requests to collections and returns the html.
*
+ * @param RequestInterface $request
+ * @param ResponseInterface $response
+ *
* @return bool
*/
public function httpGet(RequestInterface $request, ResponseInterface $response)
@@ -152,6 +160,9 @@ class Plugin extends DAV\ServerPlugin
/**
* Handles POST requests for tree operations.
*
+ * @param RequestInterface $request
+ * @param ResponseInterface $response
+ *
* @return bool
*/
public function httpPOST(RequestInterface $request, ResponseInterface $response)
@@ -488,8 +499,9 @@ HTML;
* This specifically generates the interfaces for creating new files, and
* creating new directories.
*
- * @param mixed $output
- * @param string $path
+ * @param DAV\INode $node
+ * @param mixed $output
+ * @param string $path
*/
public function htmlActionsPanel(DAV\INode $node, &$output, $path)
{
@@ -618,6 +630,7 @@ HTML;
/**
* Maps a resource type to a human-readable string and icon.
*
+ * @param array $resourceTypes
* @param DAV\INode $node
*
* @return array