1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/11159] Static public is the currently approved order.

PHPBB3-11159
This commit is contained in:
Oleg Pudeyev
2012-11-06 16:43:48 -05:00
parent 196ed8ef9f
commit 644662bc2c
5 changed files with 5 additions and 5 deletions

View File

@@ -162,7 +162,7 @@ class compress
*
* @return array Array of strings of available compression methods (.tar, .tar.gz, .zip, etc.)
*/
public static function methods()
static public function methods()
{
$methods = array('.tar');
$available_methods = array('.tar.gz' => 'zlib', '.tar.bz2' => 'bz2', '.zip' => 'zlib');