aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/lib/CalDAV/CalendarQueryValidator.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-05-07 23:35:02 +0200
committerMario <mario@mariovavti.com>2020-05-07 23:35:02 +0200
commitfae70bf0a7f1b566d25e30064f60d58ab150951a (patch)
tree1714511edb85ed0e28034ed9371d5fc515504fd6 /vendor/sabre/dav/lib/CalDAV/CalendarQueryValidator.php
parentffd2faf8a09a870e8dbecb3ad168e0a9b25941d3 (diff)
downloadvolse-hubzilla-fae70bf0a7f1b566d25e30064f60d58ab150951a.tar.gz
volse-hubzilla-fae70bf0a7f1b566d25e30064f60d58ab150951a.tar.bz2
volse-hubzilla-fae70bf0a7f1b566d25e30064f60d58ab150951a.zip
Revert "composer updates"
This reverts commit dbfe748d274f6843fc91a3071df7be45c4ab5b00
Diffstat (limited to 'vendor/sabre/dav/lib/CalDAV/CalendarQueryValidator.php')
-rw-r--r--vendor/sabre/dav/lib/CalDAV/CalendarQueryValidator.php20
1 files changed, 17 insertions, 3 deletions
diff --git a/vendor/sabre/dav/lib/CalDAV/CalendarQueryValidator.php b/vendor/sabre/dav/lib/CalDAV/CalendarQueryValidator.php
index 7ce1c05b7..0e7f1307d 100644
--- a/vendor/sabre/dav/lib/CalDAV/CalendarQueryValidator.php
+++ b/vendor/sabre/dav/lib/CalDAV/CalendarQueryValidator.php
@@ -27,6 +27,9 @@ class CalendarQueryValidator
*
* The list of filters must be formatted as parsed by \Sabre\CalDAV\CalendarQueryParser
*
+ * @param VObject\Component\VCalendar $vObject
+ * @param array $filters
+ *
* @return bool
*/
public function validate(VObject\Component\VCalendar $vObject, array $filters)
@@ -49,6 +52,9 @@ class CalendarQueryValidator
* component we're checking should be specified, not the component to check
* itself.
*
+ * @param VObject\Component $parent
+ * @param array $filters
+ *
* @return bool
*/
protected function validateCompFilters(VObject\Component $parent, array $filters)
@@ -110,6 +116,9 @@ class CalendarQueryValidator
* property we're checking should be specified, not the property to check
* itself.
*
+ * @param VObject\Component $parent
+ * @param array $filters
+ *
* @return bool
*/
protected function validatePropFilters(VObject\Component $parent, array $filters)
@@ -172,6 +181,9 @@ class CalendarQueryValidator
* parameter we're checking should be specified, not the parameter to check
* itself.
*
+ * @param VObject\Property $parent
+ * @param array $filters
+ *
* @return bool
*/
protected function validateParamFilters(VObject\Property $parent, array $filters)
@@ -219,7 +231,8 @@ class CalendarQueryValidator
* A single text-match should be specified as well as the specific property
* or parameter we need to validate.
*
- * @param VObject\Node|string $check value to check against
+ * @param VObject\Node|string $check value to check against
+ * @param array $textMatch
*
* @return bool
*/
@@ -240,8 +253,9 @@ class CalendarQueryValidator
* This is all based on the rules specified in rfc4791, which are quite
* complex.
*
- * @param DateTime $start
- * @param DateTime $end
+ * @param VObject\Node $component
+ * @param DateTime $start
+ * @param DateTime $end
*
* @return bool
*/