mediawiki-extensions-Templa.../.phan/stubs/eventlogging.php
Reedy 5341749f56 Use namespaced EventLogging class
Change-Id: I87ed269b205e83ce87e5350ef31d35847a6ad25b
2022-03-06 16:07:22 +00:00

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;
}
}