Skip to content

Commit e8294f8

Browse files
fix SVC
1 parent 5029cb0 commit e8294f8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

app/code/Magento/Shipping/Model/Config.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ public function __construct(
6363
/**
6464
* Retrieve active system carriers
6565
*
66-
* @param mixed $store
67-
* @return AbstractCarrierInterface[]
66+
* @param mixed $store
67+
* @return AbstractCarrierInterface[]
6868
*/
69-
public function getActiveCarriers($store = null): array
69+
public function getActiveCarriers($store = null)
7070
{
7171
$carriers = [];
7272
$config = $this->getCarriersConfig($store);
@@ -89,10 +89,10 @@ public function getActiveCarriers($store = null): array
8989
/**
9090
* Retrieve all system carriers
9191
*
92-
* @param mixed $store
93-
* @return AbstractCarrierInterface[]
92+
* @param mixed $store
93+
* @return AbstractCarrierInterface[]
9494
*/
95-
public function getAllCarriers($store = null): array
95+
public function getAllCarriers($store = null)
9696
{
9797
$carriers = [];
9898
$config = $this->getCarriersConfig($store);

0 commit comments

Comments
 (0)