Skip to content

Commit

Permalink
fix API get input and output elements method names #10
Browse files Browse the repository at this point in the history
  • Loading branch information
gregor-j committed Jul 30, 2024
1 parent 2932949 commit d4ae103
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Api/IApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ public function add(IApiElement $element): IApi;
* Get all input values of the remote function.
* @return IApiElement[]
*/
public function getInputValues(): array;
public function getInputElements(): array;

/**
* Get all output values of the remote function.
* @return IApiElement[]
*/
public function getOutputValues(): array;
public function getOutputElements(): array;

/**
* Get all tables of the remote function.
Expand Down

0 comments on commit d4ae103

Please sign in to comment.