build: Upgrade mediawiki/mediawiki-codesniffer to v43.0.0

Change-Id: I14948431331e02e0659e80b159f4b2e0ed0469ef
This commit is contained in:
Umherirrender 2024-03-11 22:44:41 +01:00
parent f55f0b7785
commit 29503101e5
3 changed files with 34 additions and 29 deletions

View file

@ -1,6 +1,6 @@
{ {
"require-dev": { "require-dev": {
"mediawiki/mediawiki-codesniffer": "41.0.0", "mediawiki/mediawiki-codesniffer": "43.0.0",
"mediawiki/mediawiki-phan-config": "0.14.0", "mediawiki/mediawiki-phan-config": "0.14.0",
"mediawiki/minus-x": "1.1.1", "mediawiki/minus-x": "1.1.1",
"php-parallel-lint/php-console-highlighter": "1.0.0", "php-parallel-lint/php-console-highlighter": "1.0.0",
@ -18,5 +18,10 @@
], ],
"phan": "phan -d . --long-progress-bar", "phan": "phan -d . --long-progress-bar",
"phpcs": "phpcs -sp --cache" "phpcs": "phpcs -sp --cache"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
} }
} }

View file

@ -30,7 +30,7 @@ class Hooks implements ParserFirstCallInitHook {
*/ */
public static function renderRss( $input, array $args, Parser $parser, PPFrame $frame ) { public static function renderRss( $input, array $args, Parser $parser, PPFrame $frame ) {
global $wgRSSCacheAge, $wgRSSCacheCompare, $wgRSSNamespaces, global $wgRSSCacheAge, $wgRSSCacheCompare, $wgRSSNamespaces,
$wgRSSUrlWhitelist,$wgRSSAllowedFeeds; $wgRSSUrlWhitelist, $wgRSSAllowedFeeds;
if ( is_array( $wgRSSNamespaces ) && count( $wgRSSNamespaces ) ) { if ( is_array( $wgRSSNamespaces ) && count( $wgRSSNamespaces ) ) {
$nsUsed = $parser->getTitle()->getNamespace(); $nsUsed = $parser->getTitle()->getNamespace();

View file

@ -71,7 +71,7 @@ class RSSParser {
* @param array $args * @param array $args
*/ */
public function __construct( $url, $args ) { public function __construct( $url, $args ) {
global $wgRSSDateDefaultFormat,$wgRSSItemMaxLength; global $wgRSSDateDefaultFormat, $wgRSSItemMaxLength;
$this->url = $url; $this->url = $url;
@ -223,7 +223,7 @@ class RSSParser {
return false; return false;
} }
list( $etag, $lastModified, $rss ) = $data; [ $etag, $lastModified, $rss ] = $data;
if ( !isset( $rss->items ) ) { if ( !isset( $rss->items ) ) {
return false; return false;
} }