Add @since tags to Collation stuff
[lhc/web/wiklou.git] / includes / collation / CollationEt.php
index d80bce3..5dc9fa2 100644 (file)
  * Estonian. We work around this by replacing 'W' and 'w' with 'ᴡ' U+1D21 'LATIN LETTER SMALL
  * CAPITAL W' for sortkey generation, which is collated like 'W' and is not tailored to have the
  * same primary weight as 'V' in Estonian.
+ *
+ * @since 1.24
  */
 class CollationEt extends IcuCollation {
-       function __construct() {
+       public function __construct() {
                parent::__construct( 'et' );
        }
 
@@ -48,11 +50,11 @@ class CollationEt extends IcuCollation {
                );
        }
 
-       function getSortKey( $string ) {
+       public function getSortKey( $string ) {
                return parent::getSortKey( self::mangle( $string ) );
        }
 
-       function getFirstLetter( $string ) {
+       public function getFirstLetter( $string ) {
                return self::unmangle( parent::getFirstLetter( self::mangle( $string ) ) );
        }
 }