X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fupload%2FUploadBase.php;h=24a93e4f422238741607b47869d8417a863c908b;hb=768ac15c700be7f25c4288f2675d2689f29859a3;hp=ac894aec183a9d502f14ccf602f777ae70ac93ca;hpb=add089c2544690450011d493a6597fe1f34bb2ab;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/upload/UploadBase.php b/includes/upload/UploadBase.php index ac894aec18..24a93e4f42 100644 --- a/includes/upload/UploadBase.php +++ b/includes/upload/UploadBase.php @@ -118,7 +118,7 @@ abstract class UploadBase { * Can be overridden by subclasses. * * @param User $user - * @return bool + * @return bool|string */ public static function isAllowed( $user ) { foreach ( array( 'upload', 'edit' ) as $permission ) { @@ -283,7 +283,7 @@ abstract class UploadBase { /** * Verify whether the upload is sane. - * @return mixed self::OK or else an array with error information + * @return mixed Const self::OK or else an array with error information */ public function verifyUpload() { wfProfileIn( __METHOD__ ); @@ -435,7 +435,7 @@ abstract class UploadBase { } $this->mFileProps = FSFile::getPropsFromPath( $this->mTempPath, $this->mFinalExtension ); - $mime = $this->mFileProps['file-mime']; + $mime = $this->mFileProps['mime']; if ( $wgVerifyMimeType ) { # XXX: Missing extension will be caught by validateName() via getTitle() @@ -593,7 +593,7 @@ abstract class UploadBase { * isAllowed() should be called as well for generic is-user-blocked or * can-user-upload checking. * - * @param User $user object to verify the permissions against + * @param User $user User object to verify the permissions against * @return mixed An array as returned by getUserPermissionsErrors or true * in case the user has proper permissions. */ @@ -1276,8 +1276,8 @@ abstract class UploadBase { /** * Callback to filter SVG Processing Instructions. - * @param string $target processing instruction name - * @param string $data processing instruction attribute and value + * @param string $target Processing instruction name + * @param string $data Processing instruction attribute and value * @return bool (true if the filter identified something bad) */ public static function checkSvgPICallback( $target, $data ) {