Merge pull request #5302 from AmooAti/patch-1

typo fixed
This commit is contained in:
Glenn Hermans 2021-11-07 15:55:24 +01:00 committed by GitHub
commit a832c34644
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -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);
}
}
}