mediawiki-extensions-Templa.../.phan/stubs/eventlogging.php

17 lines
257 B
PHP
Raw Normal View History

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