X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FCollation.php;h=dac3e938a8c11ef7c12c3b34ed4488b0ddd741d2;hb=d43e51a42ca248753ef9f274e1a970e0e966af23;hp=106c161d3468ad0917f4bb2276a2907424450698;hpb=2900c4b297e0a17299e0443e5bba6a26408009c4;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Collation.php b/includes/Collation.php index 106c161d34..dac3e938a8 100644 --- a/includes/Collation.php +++ b/includes/Collation.php @@ -59,7 +59,7 @@ abstract class Collation { # Provide a mechanism for extensions to hook in. $collationObject = null; - wfRunHooks( 'Collation::factory', array( $collationName, &$collationObject ) ); + Hooks::run( 'Collation::factory', array( $collationName, &$collationObject ) ); if ( $collationObject instanceof Collation ) { return $collationObject; @@ -162,7 +162,7 @@ class IcuCollation extends Collation { /** @var Collator */ private $mainCollator; - /** @var */ + /** @var string */ private $locale; /** @var Language */