$localPrefixInfo ) { if ( $prefix === $localPrefixInfo['iw_prefix'] ) { return true; } } $dbr = wfGetDB( DB_REPLICA, [], $wgInterwikiCentralDB ); $res = $dbr->selectRow( 'interwiki', '*', [ 'iw_prefix' => $prefix ], __METHOD__ ); if ( !$res ) { return true; } // Excplicitly make this an array since it's expected to be one $iwData = (array)$res; // At this point, we can safely return false because we know that we have something return false; } return true; } }