aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/lib/CalDAV/CalendarQueryValidator.php
diff options
context:
space:
mode:
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
*/