Changes:
- added more type-hints - cleaned up some files (curly braces, spaces)
This commit is contained in:
parent
a1e17968d1
commit
04df7f6e05
74 changed files with 603 additions and 529 deletions
|
@ -43,7 +43,7 @@ function js_upload_form(App $a, array &$b)
|
|||
]);
|
||||
}
|
||||
|
||||
function js_upload_post_init(App $a, &$b)
|
||||
function js_upload_post_init(App $a, array &$b)
|
||||
{
|
||||
global $js_upload_result, $js_upload_jsonresponse;
|
||||
|
||||
|
@ -69,7 +69,7 @@ function js_upload_post_init(App $a, &$b)
|
|||
$js_upload_result = $result;
|
||||
}
|
||||
|
||||
function js_upload_post_file(App $a, &$b)
|
||||
function js_upload_post_file(App $a, array &$b)
|
||||
{
|
||||
global $js_upload_result;
|
||||
|
||||
|
@ -81,7 +81,7 @@ function js_upload_post_file(App $a, &$b)
|
|||
|
||||
}
|
||||
|
||||
function js_upload_post_end(App $a, &$b)
|
||||
function js_upload_post_end(App $a, array &$b)
|
||||
{
|
||||
global $js_upload_jsonresponse;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue