Skip to content
Snippets Groups Projects
Commit 317ea000 authored by Pravin Gaikwad's avatar Pravin Gaikwad
Browse files

Drupal 11 compatibility fixes

parent ec7f4da3
No related branches found
No related tags found
1 merge request!14Drupal 11 compatibility fixes
......@@ -51,49 +51,9 @@ include:
# variables:
# SKIP_ESLINT: '1'
###################################################################################
#
# *
# /(
# ((((,
# /(((((((
# ((((((((((*
# ,(((((((((((((((
# ,(((((((((((((((((((
# ((((((((((((((((((((((((*
# *(((((((((((((((((((((((((((((
# ((((((((((((((((((((((((((((((((((*
# *(((((((((((((((((( .((((((((((((((((((
# ((((((((((((((((((. /(((((((((((((((((*
# /((((((((((((((((( .(((((((((((((((((,
# ,(((((((((((((((((( ((((((((((((((((((
# .(((((((((((((((((((( .(((((((((((((((((
# ((((((((((((((((((((((( ((((((((((((((((/
# (((((((((((((((((((((((((((/ ,(((((((((((((((*
# .((((((((((((((/ /(((((((((((((. ,(((((((((((((((
# *(((((((((((((( ,(((((((((((((/ *((((((((((((((.
# ((((((((((((((, /(((((((((((((. ((((((((((((((,
# (((((((((((((/ ,(((((((((((((* ,(((((((((((((,
# *((((((((((((( .((((((((((((((( ,(((((((((((((
# ((((((((((((/ /((((((((((((((((((. ,((((((((((((/
# ((((((((((((( *(((((((((((((((((((((((* *((((((((((((
# ((((((((((((( ,(((((((((((((..((((((((((((( *((((((((((((
# ((((((((((((, /((((((((((((* /((((((((((((/ ((((((((((((
# ((((((((((((( /((((((((((((/ (((((((((((((* ((((((((((((
# (((((((((((((/ /(((((((((((( ,((((((((((((, *((((((((((((
# (((((((((((((( *(((((((((((/ *((((((((((((. ((((((((((((/
# *((((((((((((((((((((((((((, /(((((((((((((((((((((((((
# ((((((((((((((((((((((((( ((((((((((((((((((((((((,
# .(((((((((((((((((((((((/ ,(((((((((((((((((((((((
# ((((((((((((((((((((((/ ,(((((((((((((((((((((/
# *((((((((((((((((((((( (((((((((((((((((((((,
# ,(((((((((((((((((((((, ((((((((((((((((((((/
# ,(((((((((((((((((((((* /((((((((((((((((((((
# ((((((((((((((((((((((, ,/((((((((((((((((((((,
# ,(((((((((((((((((((((((((((((((((((((((((((((((((((
# .(((((((((((((((((((((((((((((((((((((((((((((
# .((((((((((((((((((((((((((((((((((((,.
# .,(((((((((((((((((((((((((.
#
###################################################################################
# Broaden test coverage.
OPT_IN_TEST_PREVIOUS_MAJOR: 1
OPT_IN_TEST_MAX_PHP: 1
OPT_IN_TEST_PREVIOUS_MINOR: 1
OPT_IN_TEST_NEXT_MINOR: 1
OPT_IN_TEST_NEXT_MAJOR: 1
\ No newline at end of file
......@@ -3,4 +3,8 @@ services:
class: Drupal\domain_language\DomainLanguageOverrider
tags:
- { name: config.factory.override, priority: -140 }
arguments: ['@config.storage']
arguments:
- '@current_user'
- '@domain.negotiator'
- '@config.factory'
- '@domain_config.overrider'
......@@ -7,7 +7,7 @@ use Drupal\Core\Cache\CacheableMetadata;
use Drupal\Core\Config\ConfigFactoryOverrideInterface;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Session\AccountProxyInterface;
use Drupal\domain_config\OverriderInterface;
use Drupal\domain_config\DomainConfigOverrider;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
......@@ -41,7 +41,7 @@ class DomainLanguageOverrider implements ConfigFactoryOverrideInterface {
/**
* The domain config overrider service.
*
* @var \Drupal\domain_config\OverriderInterface
* @var \Drupal\domain_config\DomainConfigOverrider
*/
protected $overrider;
......@@ -75,10 +75,10 @@ class DomainLanguageOverrider implements ConfigFactoryOverrideInterface {
* The domain negotiator.
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The configuration factory.
* @param \Drupal\domain_config\OverriderInterface $overrider
* @param \Drupal\domain_config\DomainConfigOverrider $overrider
* The domain config overrider service.
*/
public function __construct(AccountProxyInterface $current_user, DomainNegotiatorInterface $domain_negotiator, ConfigFactoryInterface $config_factory, OverriderInterface $overrider) {
public function __construct(AccountProxyInterface $current_user, DomainNegotiatorInterface $domain_negotiator, ConfigFactoryInterface $config_factory, DomainConfigOverrider $overrider) {
$this->currentUser = $current_user;
$this->domainNegotiator = $domain_negotiator;
$this->configFactory = $config_factory;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment