Skip to content

Commit d4ae103

Browse files
committed
fix API get input and output elements method names #10
1 parent 2932949 commit d4ae103

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Api/IApi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ public function add(IApiElement $element): IApi;
3030
* Get all input values of the remote function.
3131
* @return IApiElement[]
3232
*/
33-
public function getInputValues(): array;
33+
public function getInputElements(): array;
3434

3535
/**
3636
* Get all output values of the remote function.
3737
* @return IApiElement[]
3838
*/
39-
public function getOutputValues(): array;
39+
public function getOutputElements(): array;
4040

4141
/**
4242
* Get all tables of the remote function.

0 commit comments

Comments
 (0)