mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-23 23:25:02 +00:00
TexNode: Replace get_class without argument
Deprecated in php8.3 Change-Id: I5d7e58ffc7426d0a26bde7b26726ecc5b68e5a4c
This commit is contained in:
parent
78e45e9ee1
commit
c197e1f3ec
|
@ -30,7 +30,7 @@ class TexNode {
|
|||
if ( $parsed ) {
|
||||
return $parsed;
|
||||
}
|
||||
$name = strtoupper( get_class() );
|
||||
$name = strtoupper( self::class );
|
||||
|
||||
return BaseMethods::generateMMLError( "Not implemented $name for $input" );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue