Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
Wp Migrations
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wpdesk
Library
Wp Migrations
Merge requests
!1
You need to sign in or sign up before continuing.
is needed
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
is needed
is-needed
into
main
Overview
2
Commits
4
Pipelines
1
Changes
13
1 unresolved thread
Hide all comments
Merged
Bartek Jaskulski
requested to merge
is-needed
into
main
8 months ago
Overview
2
Commits
4
Pipelines
1
Changes
13
1 unresolved thread
Hide all comments
chore: remove composer.lock from commited files
feat: add support for conditional execution of migrations
chore: phpstan errors fixes
chore: add changelog
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
e34e8361
4 commits,
8 months ago
13 files
+
64
−
948
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
src/Finder/GlobFinder.php
+
1
−
1
View file @ e34e8361
Edit in single-file editor
Open in Web IDE
Show full file
@@ -33,7 +33,7 @@ final class GlobFinder implements MigrationFinder {
foreach
(
$files
as
$file
)
{
require_once
$file
;
$real_file
=
realpath
(
$file
);
if
(
!
$real_file
)
{
if
(
$real_file
===
false
)
{
continue
;
}
$included_files
[]
=
$real_file
;
Loading