X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialMediaStatistics.php;h=e591da0ec183092e326558c37b044a72cc8db4a9;hb=acd7881d5fe6afd87a3bd0d7d9f40ece82b48c3f;hp=b6812bca6b26853665b7e3251b4c6e34a0f71c83;hpb=c0ed2620535b798f2826fecc4ee998380209be5d;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialMediaStatistics.php b/includes/specials/SpecialMediaStatistics.php index b6812bca6b..e591da0ec1 100644 --- a/includes/specials/SpecialMediaStatistics.php +++ b/includes/specials/SpecialMediaStatistics.php @@ -102,7 +102,7 @@ class MediaStatisticsPage extends QueryPage { * * It's important that img_media_type come first, otherwise the * tables will be fragmented. - * @return Array Fields to sort by + * @return array Fields to sort by */ function getOrderFields() { return [ 'img_media_type', 'count(*)', 'img_major_mime', 'img_minor_mime' ]; @@ -214,7 +214,7 @@ class MediaStatisticsPage extends QueryPage { /** * @param float $decimal A decimal percentage (ie for 12.3%, this would be 0.123) - * @return String The percentage formatted so that 3 significant digits are shown. + * @return string The percentage formatted so that 3 significant digits are shown. */ protected function makePercentPretty( $decimal ) { $decimal *= 100; @@ -275,7 +275,7 @@ class MediaStatisticsPage extends QueryPage { /** * Get (not output) the header row for the table * - * @return String the header row of the able + * @return string The header row of the table */ protected function getTableHeaderRow() { $headers = [ 'mimetype', 'extensions', 'count', 'totalbytes' ];