Skip to content

Commit

Permalink
Add correct type to readline_completion_function
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Feb 19, 2025
1 parent 86da1e5 commit dfd9ae7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dictionaries/override/CallMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -50273,7 +50273,7 @@
'readline_completion_function' =>
array (
0 => 'bool',
'callback' => 'callable',
'callback' => 'callable(string): array<string>',
),
'readline_info' =>
array (
Expand Down
4 changes: 2 additions & 2 deletions dictionaries/override/CallMap_80_delta.php
Original file line number Diff line number Diff line change
Expand Up @@ -22875,12 +22875,12 @@
'old' =>
array (
0 => 'bool',
'funcname' => 'callable',
'funcname' => 'callable(string): array<string>',
),
'new' =>
array (
0 => 'bool',
'callback' => 'callable',
'callback' => 'callable(string): array<string>',
),
),
'readline_info' =>
Expand Down

0 comments on commit dfd9ae7

Please sign in to comment.