diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2023-01-11 01:15:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 01:15:39 +0100 |
commit | 5c6158fdfd16c9f1d6f70865905cea172d581d19 (patch) | |
tree | 3d85203ff887935d9c0cf20902c5a8416a3ab51a /doc | |
parent | 54688a753589a2104e31cf2265a254cad48715ba (diff) | |
parent | 33d3b7eea77517cd2fcce59c5e9128aa74511f9f (diff) |
Merge pull request #71157 from reduz/fix-callable-get-bound-arguments
Fix Callable call error reporting.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/Callable.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/classes/Callable.xml b/doc/classes/Callable.xml index a6fffae8b5..d1fdaef29c 100644 --- a/doc/classes/Callable.xml +++ b/doc/classes/Callable.xml @@ -107,6 +107,12 @@ Calls the method represented by this [Callable]. Unlike [method call], this method expects all arguments to be contained inside the [param arguments] [Array]. </description> </method> + <method name="get_bound_arguments" qualifiers="const"> + <return type="Array" /> + <description> + Return the bound arguments (as long as [method get_bound_arguments_count] is greater than zero), or empty (if [method get_bound_arguments_count] is less than or equal to zero). + </description> + </method> <method name="get_bound_arguments_count" qualifiers="const"> <return type="int" /> <description> |