mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
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:
parent
a5b57b3047
commit
89fcf7e844
@ -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
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user