Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
config_override
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
config_override
Merge requests
!10
Add DrupalCI file to config_override.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add DrupalCI file to config_override.
issue/config_override-3446082:3446082-migrate-to-gitlabci
into
2.x
Overview
0
Commits
16
Pipelines
17
Changes
8
Merged
David Pagini
requested to merge
issue/config_override-3446082:3446082-migrate-to-gitlabci
into
2.x
1 year ago
Overview
0
Commits
16
Pipelines
17
Changes
8
Expand
Closes
#3446082
0
0
Merge request reports
Compare
2.x
version 16
1a78fb36
1 year ago
version 15
474496ef
1 year ago
version 14
ed244f4f
1 year ago
version 13
04ea1579
1 year ago
version 12
f4c8afcf
1 year ago
version 11
5d9f6f26
1 year ago
version 10
081f1d54
1 year ago
version 9
339a1ded
1 year ago
version 8
62949d27
1 year ago
version 7
74a5adf4
1 year ago
version 6
f3f5bc2f
1 year ago
version 5
3f4b1131
1 year ago
version 4
4aa9fe0f
1 year ago
version 3
63ac50c2
1 year ago
version 2
b95f0ace
1 year ago
version 1
e33fffe1
1 year ago
2.x (base)
and
latest version
latest version
1a78fb36
16 commits,
1 year ago
version 16
1a78fb36
16 commits,
1 year ago
version 15
474496ef
15 commits,
1 year ago
version 14
ed244f4f
14 commits,
1 year ago
version 13
04ea1579
13 commits,
1 year ago
version 12
f4c8afcf
12 commits,
1 year ago
version 11
5d9f6f26
11 commits,
1 year ago
version 10
081f1d54
10 commits,
1 year ago
version 9
339a1ded
9 commits,
1 year ago
version 8
62949d27
8 commits,
1 year ago
version 7
74a5adf4
7 commits,
1 year ago
version 6
f3f5bc2f
6 commits,
1 year ago
version 5
3f4b1131
5 commits,
1 year ago
version 4
4aa9fe0f
4 commits,
1 year ago
version 3
63ac50c2
3 commits,
1 year ago
version 2
b95f0ace
2 commits,
1 year ago
version 1
e33fffe1
1 commit,
1 year ago
8 files
+
65
−
72
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
src/ConfigOverrideServiceProvider.php
+
1
−
1
Options
@@ -17,7 +17,7 @@ class ConfigOverrideServiceProvider implements ServiceModifierInterface {
*/
public
function
alter
(
ContainerBuilder
$container
)
{
if
(
class_exists
(
'\Symfony\Component\Dotenv\Dotenv'
))
{
$drupal_root
=
$container
->
has
(
'app.root'
)
?
$container
->
getParameter
(
'app.root'
)
:
DRUPAL_ROOT
;
$drupal_root
=
$container
->
has
Parameter
(
'app.root'
)
?
$container
->
getParameter
(
'app.root'
)
:
DRUPAL_ROOT
;
$dotenv
=
new
Dotenv
();
$all_config_overrides
=
[];
$possible_files
=
[
Loading