Fix missing return type of fpm_get_status() function

This commit is contained in:
Holger Woltersdorf 2018-12-17 09:38:54 +01:00
parent cbea95d296
commit fca227f137
No known key found for this signature in database
GPG Key ID: B878F8C0C8107679
1 changed files with 2 additions and 1 deletions

View File

@ -2,5 +2,6 @@
/**
* Returns FPM status info array
* @since 7.3.0
* @return array
*/
function fpm_get_status() { }
function fpm_get_status() : array { }