mirror of
https://github.com/Mibew/java.git
synced 2025-01-23 01:50:34 +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 string $token Token of the result package
|
||||||
* @param array $result_arguments Arguments of result function
|
* @param array $result_arguments Arguments of result function
|
||||||
* @return Result package
|
* @return array Result package
|
||||||
*/
|
*/
|
||||||
public function buildResult($token, $result_arguments) {
|
public function buildResult($token, $result_arguments) {
|
||||||
$arguments = $result_arguments + $this->interaction->getDefaultObligatoryArguments();
|
$arguments = $result_arguments + $this->interaction->getDefaultObligatoryArguments();
|
||||||
@ -298,7 +298,7 @@ Class MibewAPI {
|
|||||||
* @return mixed Function array if 'result' function found and NULL otherwise
|
* @return mixed Function array if 'result' function found and NULL otherwise
|
||||||
* @throws MibewAPIException
|
* @throws MibewAPIException
|
||||||
*/
|
*/
|
||||||
public function getResultFunction ($functions_list, $existence) {
|
public function getResultFunction ($functions_list, $existence = null) {
|
||||||
$result_function = null;
|
$result_function = null;
|
||||||
// Try to find 'result' function
|
// Try to find 'result' function
|
||||||
foreach ($functions_list as $function) {
|
foreach ($functions_list as $function) {
|
||||||
|
Loading…
Reference in New Issue
Block a user