From 43be72acb46a2f132f74e03efbd060b2c689ecc7 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Thu, 28 Mar 2013 11:54:29 +0100 Subject: [PATCH] Follow PSR-2 for method modifier ordering --- src/Composer/Package/Archiver/PharArchiver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Package/Archiver/PharArchiver.php b/src/Composer/Package/Archiver/PharArchiver.php index 103f5bc23..42705e92f 100644 --- a/src/Composer/Package/Archiver/PharArchiver.php +++ b/src/Composer/Package/Archiver/PharArchiver.php @@ -22,7 +22,7 @@ use Composer\Package\PackageInterface; */ class PharArchiver implements ArchiverInterface { - static protected $formats = array( + protected static $formats = array( 'zip' => \Phar::ZIP, 'tar' => \Phar::TAR, );