mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/TemplateData
synced 2024-12-11 23:46:32 +00:00
d08a6448e9
Bug: T267926 Change-Id: I55f72500b7bad7e648238560b516e870bc9130c8
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;
|
|
}
|
|
|
|
}
|