phpmyadmin/test/stubs/uploadprogress.stub
Maurício Meneghini Fauth 8fa99a3363
Add stub file for uploadprogress_get_info function
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2022-01-19 14:49:12 -03:00

20 lines
412 B
Plaintext

<?php
/**
* @param string $identifier
* @return array{
* upload_id: string,
* fieldname: string,
* filename: string,
* time_start: int,
* time_last: int,
* speed_average: int,
* speed_last: int,
* bytes_uploaded: int,
* bytes_total: int,
* files_uploaded: int,
* est_sec: int
* }|null
*/
function uploadprogress_get_info(string $identifier): ?array {}