Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
config_distro
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
config_distro
Merge requests
!5
Fixed phpcs issues.
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Fixed phpcs issues.
issue/config_distro-3359842:3359842-fix-the-issues
into
2.0.x
Overview
28
Commits
10
Pipelines
0
Changes
8
Merged
Fixed phpcs issues.
Sidharth Soman
requested to merge
issue/config_distro-3359842:3359842-fix-the-issues
into
2.0.x
May 12, 2023
Overview
13
Commits
10
Pipelines
0
Changes
8
Closes
#3359842
0
0
Merge request reports
Compare
2.0.x
version 10
a3ce338a
May 22, 2023
version 9
65bc9fb0
May 22, 2023
version 8
15657e17
May 18, 2023
version 7
4913d187
May 18, 2023
version 6
f07201c6
May 18, 2023
version 5
932414ed
May 18, 2023
version 4
f496dafe
May 18, 2023
version 3
05f9897c
May 17, 2023
version 2
05f9897c
May 12, 2023
version 1
ba8c4f72
May 12, 2023
2.0.x (base)
and
latest version
latest version
05d34744
10 commits,
Jun 13, 2023
version 10
a3ce338a
9 commits,
May 22, 2023
version 9
65bc9fb0
8 commits,
May 22, 2023
version 8
15657e17
7 commits,
May 18, 2023
version 7
4913d187
6 commits,
May 18, 2023
version 6
f07201c6
5 commits,
May 18, 2023
version 5
932414ed
4 commits,
May 18, 2023
version 4
f496dafe
3 commits,
May 18, 2023
version 3
05f9897c
2 commits,
May 17, 2023
version 2
05f9897c
2 commits,
May 12, 2023
version 1
ba8c4f72
1 commit,
May 12, 2023
8 files
+
46
−
20
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
modules/config_distro_filter/src/ConfigDistroFilterEventSubscriber.php
+
4
−
3
View file @ 05d34744
Edit in single-file editor
Open in Web IDE
Show full file
@@ -4,15 +4,15 @@ namespace Drupal\config_distro_filter;
use
Drupal\config_distro
\Event\ConfigDistroEvents
;
use
Drupal\config_distro
\Event\DistroStorageTransformEvent
;
use
Drupal\Core\Config\MemoryStorage
;
use
Drupal\config_filter
\ConfigFilterStorageFactory
;
use
Drupal\Core\Config\MemoryStorage
;
use
Drupal\Core\Config\StorageCopyTrait
;
use
Symfony\Component\EventDispatcher\EventSubscriberInterface
;
/**
*
Class
ConfigDistroFilter
EventSubscriber
.
*
Provides event subscriber for
ConfigDistroFilter.
*/
class
ConfigDistroFilterEventSubscriber
implements
EventSubscriberInterface
{
class
ConfigDistroFilterEventSubscriber
implements
EventSubscriberInterface
{
use
StorageCopyTrait
;
@@ -37,6 +37,7 @@ class ConfigDistroFilterEventSubscriber implements EventSubscriberInterface{
* The storage is transformed for importing.
*
* @param \Drupal\config_distro\Event\DistroStorageTransformEvent $event
* The DistroStorageTransformEvent.
*/
public
function
onDistroTransform
(
DistroStorageTransformEvent
$event
)
{
$storage
=
$event
->
getStorage
();
Loading