The PSR2 standard recommends listing modifiers in the following order to improve the readability of PHP source code:
static protected $foo;
...
public static final function bar(){...}
protected static $foo;
...
final public static function bar(){...}