mediawiki-extensions-Templa.../.phan/stubs/eventlogging.php
Sam Smith 0f4d04e83f Use EventLogging::submit() to submit analytics events
EventLogging::logEvent() was marked as deprecated at the beginning of
2021 in I0cfd07295d4b51ca4805c79a28a9a4bd64ff7cc9.

Bug: T318263
Change-Id: I2d89784cc249e97954c9be05169f3060fd69945f
2023-01-30 18:20:16 +00:00

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