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

Merge branch '3429916-automated-drupal-11' into '2.0.x'

Drupal 11 compatibility fixes

See merge request !14
parents ec7f4da3 317ea000
No related branches found
No related tags found
No related merge requests found
Pipeline #236349 failed
......@@ -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