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 9, 2024
1 parent ac382cf commit 39bf96b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 28.0.1

## Bugfixes

* fix php warnings

# Version 28.0.0

## Features
Expand All @@ -8,6 +14,12 @@
* Add PHP ">=8.1" support
* Remove PHP 7.3 support

# Version 27.0.1

## Bugfixes

* fix php warnings

# Version 27.0.0

## Bugfixes
Expand Down Expand Up @@ -409,4 +421,4 @@

## Features

* Initial Release
* Initial Release
4 changes: 2 additions & 2 deletions src/Subjects/EeLinkSubject.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ public function setUp($serial)
$status = $registryProcessor->getAttribute(RegistryKeys::STATUS);

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

/**
Expand Down

0 comments on commit 39bf96b

Please sign in to comment.