We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b9b163 commit 680021bCopy full SHA for 680021b
app/code/Magento/Fedex/Model/Source/Generic.php
@@ -3,6 +3,12 @@
3
* Copyright © Magento, Inc. All rights reserved.
4
* See COPYING.txt for license details.
5
*/
6
+
7
+ /**
8
+ * Fedex generic source implementation
9
+ *
10
+ * @author Magento Core Team <core@magentocommerce.com>
11
+ */
12
namespace Magento\Fedex\Model\Source;
13
14
class Generic implements \Magento\Framework\Data\OptionSourceInterface
@@ -36,7 +42,7 @@ public function toOptionArray()
36
42
{
37
43
$configData = $this->_shippingFedex->getCode($this->_code);
38
44
$arr = [];
39
- if($configData) {
45
+ if ($configData) {
40
46
foreach ($configData as $code => $title) {
41
47
$arr[] = ['value' => $code, 'label' => $title];
48
}
0 commit comments