mirror of
https://github.com/Mibew/mibew.git
synced 2024-11-16 00:54:12 +03:00
Added default value to $existance argument in the MibewAPI::getResultFunction method
This commit is contained in:
parent
58d015c247
commit
e708282a8f
@ -270,7 +270,7 @@ Class MibewAPI {
|
||||
*
|
||||
* @param string $token Token of the result package
|
||||
* @param array $result_arguments Arguments of result function
|
||||
* @return Result package
|
||||
* @return array Result package
|
||||
*/
|
||||
public function buildResult($token, $result_arguments) {
|
||||
$arguments = $result_arguments + $this->interaction->getDefaultObligatoryArguments();
|
||||
@ -298,7 +298,7 @@ Class MibewAPI {
|
||||
* @return mixed Function array if 'result' function found and NULL otherwise
|
||||
* @throws MibewAPIException
|
||||
*/
|
||||
public function getResultFunction ($functions_list, $existence) {
|
||||
public function getResultFunction ($functions_list, $existence = null) {
|
||||
$result_function = null;
|
||||
// Try to find 'result' function
|
||||
foreach ($functions_list as $function) {
|
||||
|
Loading…
Reference in New Issue
Block a user