File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,15 @@ public function getOutputElements(): array
57
57
return $ this ->getElements (IApiElement::DIRECTION_OUTPUT );
58
58
}
59
59
60
+ /**
61
+ * Get all direction changing values of the remote function.
62
+ * @return IApiElement[]
63
+ */
64
+ public function getChangingElements (): array
65
+ {
66
+ return $ this ->getElements (IApiElement::DIRECTION_CHANGING );
67
+ }
68
+
60
69
/**
61
70
* Get all tables of the remote function.
62
71
* @return IApiElement[]
Original file line number Diff line number Diff line change @@ -65,7 +65,8 @@ protected function getAllowedDirections(): array
65
65
{
66
66
return [
67
67
self ::DIRECTION_INPUT ,
68
- self ::DIRECTION_OUTPUT
68
+ self ::DIRECTION_OUTPUT ,
69
+ self ::DIRECTION_CHANGING
69
70
];
70
71
}
71
72
Original file line number Diff line number Diff line change @@ -86,7 +86,8 @@ protected function getAllowedDirections(): array
86
86
{
87
87
return [
88
88
self ::DIRECTION_INPUT ,
89
- self ::DIRECTION_OUTPUT
89
+ self ::DIRECTION_OUTPUT ,
90
+ self ::DIRECTION_CHANGING
90
91
];
91
92
}
92
93
}
You can’t perform that action at this time.
0 commit comments