mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/TemplateData
synced 2024-12-03 20:06:17 +00:00
17 lines
257 B
PHP
17 lines
257 B
PHP
|
<?php
|
||
|
|
||
|
class EventLogging {
|
||
|
|
||
|
/**
|
||
|
* @param string $schemaName
|
||
|
* @param int $revId
|
||
|
* @param array $event
|
||
|
* @param int $options
|
||
|
* @return bool
|
||
|
*/
|
||
|
public static function logEvent( $schemaName, $revId, $event, $options = 0 ) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
}
|