Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
automatic_updates
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
automatic_updates
Merge requests
!564
Issue
#3304365
: Do not check excluded folders for symlinks
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3304365
: Do not check excluded folders for symlinks
issue/automatic_updates-3304365:3304365-do-not-check
into
8.x-2.x
Overview
14
Commits
27
Pipelines
1
Changes
20
2 unresolved threads
Show all comments
Merged
Adam G-H
requested to merge
issue/automatic_updates-3304365:3304365-do-not-check
into
8.x-2.x
2 years ago
Overview
14
Commits
27
Pipelines
1
Changes
20
2 unresolved threads
Show all comments
Expand
0
0
Merge request reports
Compare
8.x-2.x
version 29
ac04824c
2 years ago
version 28
35f7a4e7
2 years ago
version 27
d6772771
2 years ago
version 26
6b9aa1f9
2 years ago
version 25
20c3a36f
2 years ago
version 24
3f20d144
2 years ago
version 23
aed9069b
2 years ago
version 22
bc1b7a30
2 years ago
version 21
843f25ea
2 years ago
version 20
e45370dd
2 years ago
version 19
88c1924a
2 years ago
version 18
2cbb3453
2 years ago
version 17
9239e85c
2 years ago
version 16
27c09db2
2 years ago
version 15
f942032e
2 years ago
version 14
e2d0bcaa
2 years ago
version 13
42d3a2dd
2 years ago
version 12
50288564
2 years ago
version 11
15c98f83
2 years ago
version 10
34bfefa3
2 years ago
version 9
2724e22b
2 years ago
version 8
0d00bd59
2 years ago
version 7
a154652a
2 years ago
version 6
e476f3da
2 years ago
version 5
1bc1b4c4
2 years ago
version 4
bfb9642c
2 years ago
version 3
9fddbce7
2 years ago
version 2
fbf9c32f
2 years ago
version 1
ec088ad7
2 years ago
8.x-2.x (base)
and
version 19
latest version
ac04824c
27 commits,
2 years ago
version 29
ac04824c
27 commits,
2 years ago
version 28
35f7a4e7
26 commits,
2 years ago
version 27
d6772771
25 commits,
2 years ago
version 26
6b9aa1f9
24 commits,
2 years ago
version 25
20c3a36f
23 commits,
2 years ago
version 24
3f20d144
22 commits,
2 years ago
version 23
aed9069b
16 commits,
2 years ago
version 22
bc1b7a30
15 commits,
2 years ago
version 21
843f25ea
14 commits,
2 years ago
version 20
e45370dd
13 commits,
2 years ago
version 19
88c1924a
12 commits,
2 years ago
version 18
2cbb3453
11 commits,
2 years ago
version 17
9239e85c
10 commits,
2 years ago
version 16
27c09db2
9 commits,
2 years ago
version 15
f942032e
8 commits,
2 years ago
version 14
e2d0bcaa
7 commits,
2 years ago
version 13
42d3a2dd
6 commits,
2 years ago
version 12
50288564
5 commits,
2 years ago
version 11
15c98f83
4 commits,
2 years ago
version 10
34bfefa3
3 commits,
2 years ago
version 9
2724e22b
2 commits,
2 years ago
version 8
0d00bd59
1 commit,
2 years ago
version 7
a154652a
11 commits,
2 years ago
version 6
e476f3da
8 commits,
2 years ago
version 5
1bc1b4c4
7 commits,
2 years ago
version 4
bfb9642c
6 commits,
2 years ago
version 3
9fddbce7
4 commits,
2 years ago
version 2
fbf9c32f
2 commits,
2 years ago
version 1
ec088ad7
1 commit,
2 years ago
20 files
+
211
−
68
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
20
Search (e.g. *.vue) (Ctrl+P)
package_manager/src/Event/CollectIgnoredPathsEvent.php
0 → 100644
+
46
−
0
Options
<?php
namespace
Drupal\package_manager\Event
;
use
Drupal\package_manager
\Stage
;
use
PhpTuf\ComposerStager\Domain\Value\PathList\PathListInterface
;
use
PhpTuf\ComposerStager\Infrastructure\Value\PathList\PathList
;
/**
* Defines an event that collects ignored paths.
*
* Ignored paths are completely ignored by Composer Stager. They are never
* copied into the staging area from the active directory, or vice-versa.
*/
class
CollectIgnoredPathsEvent
extends
StageEvent
implements
PathListInterface
{
/**
* The list of ignored paths.
*
* @var \PhpTuf\ComposerStager\Domain\Value\PathList\PathListInterface
*/
protected
PathListInterface
$pathList
;
/**
* {@inheritdoc}
*/
public
function
__construct
(
Stage
$stage
)
{
parent
::
__construct
(
$stage
);
$this
->
pathList
=
new
PathList
([]);
}
/**
* {@inheritdoc}
*/
public
function
add
(
array
$paths
):
void
{
$this
->
pathList
->
add
(
$paths
);
}
/**
* {@inheritdoc}
*/
public
function
getAll
():
array
{
return
$this
->
pathList
->
getAll
();
}
}
Loading