mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-12 08:49:28 +00:00
1ed75b4ae0
This reverts commit 69d7669069
.
Reason for revert: Causing UBN train blocker
Bug: T207220
Change-Id: I3445d9b3065149e2beb149e10fbbf5502b480f57
15 lines
208 B
PHP
15 lines
208 B
PHP
<?php
|
|
|
|
class AFPParserState {
|
|
public $pos, $token;
|
|
|
|
/**
|
|
* @param AFPToken $token
|
|
* @param int $pos
|
|
*/
|
|
public function __construct( $token, $pos ) {
|
|
$this->token = $token;
|
|
$this->pos = $pos;
|
|
}
|
|
}
|