Skip to content

Commit 680021b

Browse files
committed
Static test fix
1 parent 5b9b163 commit 680021b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

app/code/Magento/Fedex/Model/Source/Generic.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
7+
/**
8+
* Fedex generic source implementation
9+
*
10+
* @author Magento Core Team <core@magentocommerce.com>
11+
*/
612
namespace Magento\Fedex\Model\Source;
713

814
class Generic implements \Magento\Framework\Data\OptionSourceInterface
@@ -36,7 +42,7 @@ public function toOptionArray()
3642
{
3743
$configData = $this->_shippingFedex->getCode($this->_code);
3844
$arr = [];
39-
if($configData) {
45+
if ($configData) {
4046
foreach ($configData as $code => $title) {
4147
$arr[] = ['value' => $code, 'label' => $title];
4248
}

0 commit comments

Comments
 (0)