mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-13 17:27:20 +00:00
3c3a521fec
This should fix every error with excluded rules, leaving only the one for $wgTitle. A double check would be nice in order to avoid regressions due to stupid mistakes. Bug: T178007 Change-Id: I22c179f3a01d652640304b59e43fcb5b5a9abac3
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;
|
|
}
|
|
}
|