fix a PHP Strict Standards: Declaration of *_groupdav::propfind_callback() should be compatible with & EGroupware\Api\CalDAV\Handler::propfind_callback

This commit is contained in:
Ralf Becker 2016-06-06 13:54:09 +02:00
parent a5b57b3047
commit 89fcf7e844

View File

@ -152,12 +152,11 @@ abstract class Handler
* @param string $path
* @param array $filter
* @param array|boolean $start false=return all or array(start,num)
* @param int &$total
* @return array with "files" array with values for keys path and props
*/
function &propfind_callback($path, array $filter,$start,&$total)
function &propfind_callback($path, array $filter, $start)
{
unset($path, $filter, $start, $total); // not used, but required by function signature
unset($path, $filter, $start); // not used, but required by function signature
}
/**