mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-27 17:01:07 +00:00
MathRenderer, SpecialMathShowImage: Correct phpdoc
Change-Id: Ibce076dfb6bd3676e288cf2d762ebcb55606246d
This commit is contained in:
parent
42f834660d
commit
9c0a2c28b9
|
@ -99,7 +99,7 @@ abstract class MathRenderer {
|
|||
|
||||
/**
|
||||
*
|
||||
* @param type $md5
|
||||
* @param string $md5
|
||||
* @return MathRenderer the MathRenderer generated from md5
|
||||
*/
|
||||
public static function newFromMd5( $md5 ) {
|
||||
|
@ -652,7 +652,7 @@ abstract class MathRenderer {
|
|||
}
|
||||
|
||||
/**
|
||||
* @return string Userdefined ID
|
||||
* @param string user defined ID
|
||||
*/
|
||||
public function setID( $id ) {
|
||||
// Changes in the ID affect the container for the math element on the current page
|
||||
|
|
|
@ -16,8 +16,10 @@ class SpecialMathShowImage extends SpecialPage {
|
|||
false // Don't show on Special:SpecialPages - it's not useful interactively
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets headers - this should be called from the execute() method of all derived classes!
|
||||
* @param bool $success
|
||||
*/
|
||||
function setHeaders( $success = true ) {
|
||||
$out = $this->getOutput();
|
||||
|
|
Loading…
Reference in a new issue