Commit du répertoire FedEx

This commit is contained in:
2020-11-13 10:50:08 +01:00
parent 898aa9df75
commit 63504d5f90
21 changed files with 1102 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace FedEx\Model\Config\Base;
class FedExConfigValue
{
const PRICES = "prices";
const TRACKING_URL = "https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber=";
}

View File

@@ -0,0 +1,9 @@
<?php
namespace FedEx\Model\Config;
use FedEx\Model\Config\Base\FedExConfigValue as BaseFedExConfigValue;
class FedExConfigValue extends BaseFedExConfigValue
{
}