Skip to content

Commit f730faa

Browse files
authored
ENGCOM-6017: Remove useless semicolons #24872
2 parents b9e61b9 + a5b2160 commit f730faa

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_non_latin_url_key.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
$productRepository->save($product);
4242
} catch (\Exception $e) {
4343
// problems during save
44-
};
44+
}
4545

4646
/** @var ProductInterface $product */
4747
$product = $objectManager->create(ProductInterface::class);
@@ -60,4 +60,4 @@
6060
$productRepository->save($product);
6161
} catch (\Exception $e) {
6262
// problems during save
63-
};
63+
}

dev/tests/integration/testsuite/Magento/Multishipping/Fixtures/quote_with_configurable_product.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
$item->setQty(1);
119119
$address->setTotalQty(1);
120120
$address->addItem($item);
121-
};
121+
}
122122
}
123123

124124
$billingAddressData = [

lib/internal/Magento/Framework/Lock/Backend/Database.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function lock(string $name, int $timeout = -1): bool
7676
{
7777
if (!$this->deploymentConfig->isDbAvailable()) {
7878
return true;
79-
};
79+
}
8080
$name = $this->addPrefix($name);
8181

8282
/**
@@ -117,7 +117,7 @@ public function unlock(string $name): bool
117117
{
118118
if (!$this->deploymentConfig->isDbAvailable()) {
119119
return true;
120-
};
120+
}
121121

122122
$name = $this->addPrefix($name);
123123

@@ -145,7 +145,7 @@ public function isLocked(string $name): bool
145145
{
146146
if (!$this->deploymentConfig->isDbAvailable()) {
147147
return false;
148-
};
148+
}
149149

150150
$name = $this->addPrefix($name);
151151

0 commit comments

Comments
 (0)