Skip to content

Commit

Permalink
fix php warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kenza-ya committed Aug 6, 2024
1 parent 6fc77d8 commit 7e55ac0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 25.0.4

## Bugfixes

* fix php warnings

# Version 25.0.3

## Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion src/Subjects/LinkSubject.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function setUp($serial)
$status = $registryProcessor->getAttribute(RegistryKeys::STATUS);

// load the SKU => entity ID mapping
$this->skuEntityIdMapping = $status[RegistryKeys::SKU_ENTITY_ID_MAPPING];
$this->skuEntityIdMapping = $status[RegistryKeys::SKU_ENTITY_ID_MAPPING] ?? null;
}

/**
Expand Down

0 comments on commit 7e55ac0

Please sign in to comment.