Skip to content

Commit b0b7f04

Browse files
committed
Merge remote-tracking branch 'github-magento/MAGETWO-91501' into EPAM-PR-6
2 parents f1d995e + e9eb2e4 commit b0b7f04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Magento/Sales/Model/Order/Pdf/Items/Invoice/DefaultInvoice.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public function draw()
128128
];
129129

130130
// Checking whether option value is not null
131-
if ($option['value']!= null) {
131+
if ($option['value'] !== null) {
132132
if (isset($option['print_value'])) {
133133
$printValue = $option['print_value'];
134134
} else {

app/code/Magento/Sales/Model/Order/Pdf/Items/Shipment/DefaultShipment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function draw()
8989
];
9090

9191
// draw options value
92-
if ($option['value']!= null) {
92+
if ($option['value'] !== null) {
9393
$printValue = isset(
9494
$option['print_value']
9595
) ? $option['print_value'] : $this->filterManager->stripTags(

0 commit comments

Comments
 (0)