mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/TemplateData
synced 2024-12-04 04:08:21 +00:00
5341749f56
Change-Id: I87ed269b205e83ce87e5350ef31d35847a6ad25b
19 lines
302 B
PHP
19 lines
302 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\EventLogging;
|
|
|
|
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;
|
|
}
|
|
|
|
}
|