X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;ds=inline;f=includes%2FMimeMagic.php;h=a2a44bb8683201a843ac488edf0f07850a2ef8dc;hb=c4145b2f087c0d8f46191456aa0e4cf83e7b1ba1;hp=f062d13514fa50cbd6ae6e97fc65df1198964841;hpb=41f1ce0d35b929d480ce87605a3234c187e44fd2;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/MimeMagic.php b/includes/MimeMagic.php index f062d13514..a2a44bb868 100644 --- a/includes/MimeMagic.php +++ b/includes/MimeMagic.php @@ -28,14 +28,14 @@ class MimeMagic extends MimeAnalyzer { /** * Get an instance of this class * @return MimeMagic - * @deprecated since 1.28 get a MimeAnalyzer instance form MediaWikiServices + * @deprecated since 1.28 get a MimeAnalyzer instance from MediaWikiServices */ public static function singleton() { // XXX: We know that the MimeAnalyzer is currently an instance of MimeMagic $instance = MediaWikiServices::getInstance()->getMimeAnalyzer(); Assert::postcondition( $instance instanceof MimeMagic, - __METHOD__ . ' should return an instance of ' . MimeMagic::class + __METHOD__ . ' should return an instance of ' . self::class ); return $instance; }