mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
php5.2+ requires the interfaces also to declare the default params (or not to use them in implementations)
This commit is contained in:
parent
a06732a3e2
commit
ec80b68626
@ -33,7 +33,7 @@ interface iface_egw_record
|
||||
*
|
||||
* @param string $_identifier
|
||||
*/
|
||||
public function __construct( $_identifier );
|
||||
public function __construct( $_identifier='' );
|
||||
|
||||
/**
|
||||
* magic method to set attributes of record
|
||||
|
@ -40,7 +40,7 @@ interface iface_export_record
|
||||
* @return bool
|
||||
* @access public
|
||||
*/
|
||||
public function __construct( $_handle, $_charset, array $_options );
|
||||
public function __construct( $_handle, $_charset, array $_options=array() );
|
||||
|
||||
/**
|
||||
* exports a record into resource of handle
|
||||
|
Loading…
Reference in New Issue
Block a user