mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/TemplateData
synced 2024-12-02 19:36:16 +00:00
0f4d04e83f
EventLogging::logEvent() was marked as deprecated at the beginning of 2021 in I0cfd07295d4b51ca4805c79a28a9a4bd64ff7cc9. Bug: T318263 Change-Id: I2d89784cc249e97954c9be05169f3060fd69945f
14 lines
218 B
PHP
14 lines
218 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\EventLogging;
|
|
|
|
class EventLogging {
|
|
|
|
/**
|
|
* @param string $streamName
|
|
* @param array $event
|
|
*/
|
|
public static function submit( string $streamName, array $event ): void {
|
|
}
|
|
}
|