Browse Source

Follow PSR-2 for method modifier ordering

Nils Adermann 12 năm trước cách đây
mục cha
commit
43be72acb4
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/Composer/Package/Archiver/PharArchiver.php

+ 1 - 1
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,
     );