Make static function bufferTagsToSetByAction() really static

Follow-up to f3ac71de38.

Change-Id: Ie6865fe0c08ad0ce5e9a5a3b59c9b427228fb554
This commit is contained in:
Bartosz Dziewoński 2016-07-27 22:22:39 +02:00
parent 81e15d7273
commit a11a02d833

View file

@ -1512,7 +1512,7 @@ class AbuseFilter {
/**
* @param array[] $tagsByAction Map of (integer => string[])
*/
private function bufferTagsToSetByAction( array $tagsByAction ) {
private static function bufferTagsToSetByAction( array $tagsByAction ) {
foreach ( $tagsByAction as $actionID => $tags ) {
if ( !isset( self::$tagsToSet[$actionID] ) ) {
self::$tagsToSet[$actionID] = $tags;