diff --git a/packages/Webkul/Shipping/src/Carriers/AbstractShipping.php b/packages/Webkul/Shipping/src/Carriers/AbstractShipping.php index 8394be99b..1639ba39c 100755 --- a/packages/Webkul/Shipping/src/Carriers/AbstractShipping.php +++ b/packages/Webkul/Shipping/src/Carriers/AbstractShipping.php @@ -2,8 +2,6 @@ namespace Webkul\Shipping\Carriers; -use Illuminate\Support\Facades\Config; - abstract class AbstractShipping { abstract public function calculate(); @@ -49,7 +47,7 @@ abstract class AbstractShipping */ public function getDescription() { - return $this->getConfigData('decription'); + return $this->getConfigData('description'); } /** @@ -63,4 +61,4 @@ abstract class AbstractShipping { return core()->getConfigData('sales.carriers.' . $this->getCode() . '.' . $field); } -} \ No newline at end of file +}