turn PHP7+ type hint into phpdoc (fixes #185)

This commit is contained in:
Florian Schlichting 2019-01-30 18:20:04 +01:00
parent ace5cfe855
commit 6627018f77

View File

@ -3,7 +3,11 @@
require_once("RRule.php");
require_once("vCalendar.php");
function update_instance_ranges(string $collection_dav_name) {
/**
* Update instance range columns when a collection's timezone changes
* @param string $collection_dav_name The collection to process
*/
function update_instance_ranges($collection_dav_name) {
// This can take a while, since vCalendar parsing is very slow, and we're
// going to parse every event in the collection!
//