mediawiki-extensions-AbuseF.../includes/parser/AFPParserState.php
Daimona Eaytoy 3c3a521fec Fix coding conventions exclusion rules
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
2018-04-20 08:40:18 +00:00

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