Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
pookmish committed Jan 9, 2025
1 parent 529b6f7 commit 51a6e7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Config/MigrationConfigOverrides.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function loadOverrides($names) {
foreach ($names as $name) {

// Only override migration entities.
if (substr($name, 0, 23) == 'migrate_plus.migration.') {
if (str_starts_with($name, 'migrate_plus.migration.')) {
$migration_id = pathinfo($name, PATHINFO_EXTENSION);

// If the state value is not set, don't do any overriding.
Expand Down

0 comments on commit 51a6e7b

Please sign in to comment.