Skip to content
This repository was archived by the owner on Feb 5, 2024. It is now read-only.

Commit eca2632

Browse files
committed
Release version 2.0.27
ISSUE: CS-4972
1 parent d33124b commit eca2632

File tree

85 files changed

+421
-82
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+421
-82
lines changed

Api/ConfigInterface.php

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
/**
66
* Interface ConfigInterface
77
*
8+
* @package SendCloud\SendCloud\Api
89
*/
910
interface ConfigInterface
1011
{

Api/DeliveryMethodNames.php

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
namespace SendCloud\SendCloud\Api;
44

5+
/**
6+
* Interface DeliveryMethodNames
7+
* @package SendCloud\SendCloud\Api
8+
*/
59
interface DeliveryMethodNames
610
{
711
const NAMES = [

Block/Checkout/Config.php

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
use Magento\Store\Model\ScopeInterface;
77
use SendCloud\SendCloud\Logger\SendCloudLogger;
88

9+
/**
10+
* Class Config
11+
*/
912
class Config extends Template
1013
{
1114
private SendCloudLogger $sendCloudLogger;

Block/System/Config/Form/Button.php

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
namespace SendCloud\SendCloud\Block\System\Config\Form;
44

5+
/**
6+
* Class Button
7+
*
8+
*/
59
class Button extends \Magento\Config\Block\System\Config\Form\Field
610
{
711
protected $_template = 'system/config/button/button.phtml';

Block/System/Config/Form/DynamicCheckoutDeprecatedMessage.php

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
use Magento\Config\Block\System\Config\Form\Field;
66

7+
/**
8+
* Class DynamicCheckoutDeprecatedMessage
9+
*
10+
* @package SendCloud\SendCloud\Block\System\Config\Form
11+
*/
712
class DynamicCheckoutDeprecatedMessage extends Field
813
{
914
protected $_template = 'system/config/form/general_message.phtml';

Checkout/Contracts/CheckoutConfiguratorFactoryInterface.php

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
/**
99
* Interface CheckouConfiguratiorFactoryInterface
10+
* @package SendCloud\SendCloud\Checkout\Contracts
1011
*/
1112
interface CheckoutConfiguratorFactoryInterface
1213
{

Checkout/Contracts/CheckoutServiceFactoryInterface.php

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
/**
88
* Interface CheckoutServiceFactory
9+
* @package SendCloud\SendCloud\Block\Checkout\Contracts
910
*/
1011
interface CheckoutServiceFactoryInterface
1112
{

Checkout/Factories/CheckoutServiceFactory.php

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
use SendCloud\SendCloud\Model\ResourceModel\SendcloudDeliveryMethod;
1717
use SendCloud\SendCloud\Model\ResourceModel\SendcloudDeliveryZone;
1818

19+
/**
20+
* Class CheckoutServiceFactory
21+
* @package SendCloud\SendCloud\Checkout\Factories
22+
*/
1923
class CheckoutServiceFactory implements CheckoutServiceFactoryInterface
2024
{
2125
/**

Checkout/Services/CurrencyService.php

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
use Magento\Store\Model\StoreManagerInterface;
66
use SendCloud\SendCloud\CheckoutCore\Contracts\Services\CurrencyService as CurrencyServiceInterface;
77

8+
/**
9+
* Class CurrencyService
10+
* @package SendCloud\SendCloud\Checkout\Services
11+
*/
812
class CurrencyService implements CurrencyServiceInterface
913
{
1014
/**

Checkout/Services/DeliveryMethodSetupService.php

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
use SendCloud\SendCloud\CheckoutCore\Contracts\Services\DeliveryMethodSetupService as DeliveryMethodSetupServiceInterface;
66

7+
/**
8+
* Class DeliveryMethodSetupService
9+
* @package SendCloud\SendCloud\Checkout\Services
10+
*/
711
class DeliveryMethodSetupService implements DeliveryMethodSetupServiceInterface
812
{
913

Checkout/Services/DeliveryZoneSetupService.php

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
use SendCloud\SendCloud\CheckoutCore\Contracts\Services\DeliveryZoneSetupService as DeliveryZoneSetupServiceInterface;
66

7+
/**
8+
* Class DeliveryZoneSetupService
9+
* @package SendCloud\SendCloud\Checkout\Services
10+
*/
711
class DeliveryZoneSetupService implements DeliveryZoneSetupServiceInterface
812
{
913

Checkout/Services/ProxyService.php

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
use SendCloud\SendCloud\CheckoutCore\Contracts\Proxies\CheckoutProxy;
66

7+
/**
8+
* Class ProxyService
9+
* @package SendCloud\SendCloud\Checkout\Services
10+
*/
711
class ProxyService implements CheckoutProxy
812
{
913

CheckoutCore/API/Checkout/Checkout.php

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
use SendCloud\SendCloud\CheckoutCore\API\Checkout\Delivery\Zone\DeliveryZone;
66
use SendCloud\SendCloud\CheckoutCore\DTO\DataTransferObject;
77

8+
/**
9+
* Class Checkout
10+
*
11+
* @package SendCloud\SendCloud\CheckoutCore\API\Checkout
12+
*/
813
class Checkout extends DataTransferObject
914
{
1015
/**

CheckoutCore/API/Checkout/Delivery/Method/Carrier.php

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
use SendCloud\SendCloud\CheckoutCore\DTO\DataTransferObject;
66

7+
/**
8+
* Class Carrier
9+
*
10+
* @package SendCloud\SendCloud\CheckoutCore\API\Checkout\Delivery\Method
11+
*/
712
class Carrier extends DataTransferObject
813
{
914
/**

CheckoutCore/API/Checkout/Delivery/Method/DeliveryDay.php

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
use SendCloud\SendCloud\CheckoutCore\DTO\DataTransferObject;
66

7+
/**
8+
* Class DeliveryDay
9+
*
10+
* @package SendCloud\SendCloud\CheckoutCore\API\Checkout\Delivery\Method
11+
*/
712
class DeliveryDay extends DataTransferObject
813
{
914
/**

CheckoutCore/API/Checkout/Delivery/Method/HandoverDay.php

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
use SendCloud\SendCloud\CheckoutCore\DTO\DataTransferObject;
66

7+
/**
8+
* Class HandoverDay
9+
*
10+
* @package SendCloud\SendCloud\CheckoutCore\API\Checkout\Delivery\Method
11+
*/
712
class HandoverDay extends DataTransferObject
813
{
914
/**

CheckoutCore/API/Checkout/Delivery/Method/ShippingProduct.php

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
use SendCloud\SendCloud\CheckoutCore\DTO\DataTransferObject;
66

7+
/**
8+
* Class ShippingProduct
9+
*
10+
* @package SendCloud\SendCloud\CheckoutCore\API\Checkout\Delivery\Method
11+
*/
712
class ShippingProduct extends DataTransferObject
813
{
914
/**

CheckoutCore/API/Checkout/Delivery/Zone/DeliveryZone.php

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
use SendCloud\SendCloud\CheckoutCore\API\Checkout\Delivery\Method\DeliveryMethod;
66
use SendCloud\SendCloud\CheckoutCore\DTO\DataTransferObject;
77

8+
/**
9+
* Class DeliveryZone
10+
*
11+
* @package SendCloud\SendCloud\CheckoutCore\API\Checkout\Delivery\Zone
12+
*/
813
class DeliveryZone extends DataTransferObject
914
{
1015
/**

CheckoutCore/API/Checkout/Delivery/Zone/Location.php

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
use SendCloud\SendCloud\CheckoutCore\DTO\DataTransferObject;
66

7+
/**
8+
* Class Location
9+
*
10+
* @package SendCloud\SendCloud\CheckoutCore\API\Checkout\Delivery\Zone
11+
*/
712
class Location extends DataTransferObject
813
{
914
/**

CheckoutCore/CheckoutService.php

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
1717
use SendCloud\SendCloud\CheckoutCore\Exceptions\Domain\FailedToUpdateCheckoutConfigurationException;
1818
use SendCloud\SendCloud\CheckoutCore\Exceptions\HTTP\HttpException;
1919

20+
/**
21+
* Class CheckoutService
22+
*
23+
* @package SendCloud\SendCloud\CheckoutCore\Facades
24+
*/
2025
class CheckoutService implements BaseService
2126
{
2227
/**

CheckoutCore/Configurator.php

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
use SendCloud\SendCloud\CheckoutCore\Contracts\Facades\CheckoutService as CheckoutServiceInterface;
88
use SendCloud\SendCloud\CheckoutCore\Contracts\Validators\RequestValidator;
99

10+
/**
11+
* Class Configurator
12+
*
13+
* @package SendCloud\SendCloud\CheckoutCore
14+
*/
1015
class Configurator
1116
{
1217
/**

CheckoutCore/Contracts/Facades/CheckoutService.php

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88
use SendCloud\SendCloud\CheckoutCore\Exceptions\Domain\FailedToDeleteCheckoutConfigurationException;
99
use SendCloud\SendCloud\CheckoutCore\Exceptions\Domain\FailedToUpdateCheckoutConfigurationException;
1010

11+
/**
12+
* Interface CheckoutService
13+
*
14+
* @package SendCloud\SendCloud\CheckoutCore\Contracts\Facades
15+
*/
1116
interface CheckoutService
1217
{
1318
/**

CheckoutCore/Contracts/Proxies/CheckoutProxy.php

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
use SendCloud\SendCloud\CheckoutCore\Exceptions\HTTP\HttpException;
66

7+
/**
8+
* Interface CheckoutProxy
9+
*
10+
* @package SendCloud\SendCloud\CheckoutCore\Contracts\Proxies
11+
*/
712
interface CheckoutProxy
813
{
914
/**

CheckoutCore/Contracts/Services/DeliveryMethodService.php

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
use SendCloud\SendCloud\CheckoutCore\Domain\Delivery\DeliveryMethod;
66

7+
/**
8+
* Interface DeliveryMethodService
9+
*
10+
* @package SendCloud\SendCloud\CheckoutCore\Contracts\Services
11+
*/
712
interface DeliveryMethodService
813
{
914
/**

CheckoutCore/Contracts/Services/DeliveryMethodSetupService.php

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
use SendCloud\SendCloud\CheckoutCore\Domain\Delivery\DeliveryMethod;
66

7+
/**
8+
* Interface DeliveryMethodSetupService
9+
*
10+
* @package SendCloud\SendCloud\CheckoutCore\Contracts\Services
11+
*/
712
interface DeliveryMethodSetupService
813
{
914
/**

CheckoutCore/Contracts/Services/DeliveryZoneService.php

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
use SendCloud\SendCloud\CheckoutCore\Domain\Delivery\DeliveryZone;
66
use SendCloud\SendCloud\CheckoutCore\Domain\Search\Query;
77

8+
/**
9+
* Interface DeliveryZoneService
10+
*
11+
* @package SendCloud\SendCloud\CheckoutCore\Contracts\Services
12+
*/
813
interface DeliveryZoneService
914
{
1015
/**

CheckoutCore/Contracts/Services/DeliveryZoneSetupService.php

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
use SendCloud\SendCloud\CheckoutCore\Domain\Delivery\DeliveryZone;
66

7+
/**
8+
* Interface DeliveryZoneSetupService
9+
*
10+
* @package SendCloud\SendCloud\CheckoutCore\Contracts\Services
11+
*/
712
interface DeliveryZoneSetupService
813
{
914
/**

CheckoutCore/Contracts/Storage/CheckoutStorage.php

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
use SendCloud\SendCloud\CheckoutCore\Domain\Delivery\DeliveryMethod;
66
use SendCloud\SendCloud\CheckoutCore\Domain\Delivery\DeliveryZone;
77

8+
/**
9+
* Interface CheckoutStorage
10+
*
11+
* @package SendCloud\SendCloud\CheckoutCore\Contracts\Storage
12+
*/
813
interface CheckoutStorage
914
{
1015
/**

CheckoutCore/Contracts/Validators/RequestValidator.php

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
use SendCloud\SendCloud\CheckoutCore\HTTP\Request;
77
use SendCloud\SendCloud\CheckoutCore\Exceptions\ValidationException;
88

9+
/**
10+
* Interface RequestValidator
11+
*
12+
* @package SendCloud\SendCloud\CheckoutCore\Contracts
13+
*/
914
interface RequestValidator
1015
{
1116
/**

CheckoutCore/DTO/Validator.php

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
use SendCloud\SendCloud\CheckoutCore\Exceptions\DTO\DTOValidationException;
66

7+
/**
8+
* Class Validator
9+
*
10+
* @package SendCloud\SendCloud\CheckoutCore\DTO
11+
*/
712
class Validator
813
{
914
/**

CheckoutCore/Domain/Delivery/Carrier.php

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
use SendCloud\SendCloud\CheckoutCore\Domain\Interfaces\Comparable;
66
use SendCloud\SendCloud\CheckoutCore\Domain\Interfaces\DTOInstantiable;
77

8+
/**
9+
* Class Carrier
10+
*
11+
* @package SendCloud\SendCloud\CheckoutCore\Domain\Delivery
12+
*/
813
class Carrier implements Comparable, DTOInstantiable
914
{
1015
/**

CheckoutCore/Domain/Delivery/Country.php

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
use SendCloud\SendCloud\CheckoutCore\Domain\Interfaces\Comparable;
77
use SendCloud\SendCloud\CheckoutCore\Domain\Interfaces\DTOInstantiable;
88

9+
/**
10+
* Class Country
11+
*
12+
* @package SendCloud\SendCloud\CheckoutCore\Domain\Delivery
13+
*/
914
class Country implements Comparable, DTOInstantiable
1015
{
1116
/**

CheckoutCore/Domain/Delivery/DeliveryDay.php

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
use SendCloud\SendCloud\CheckoutCore\Domain\Interfaces\Comparable;
66
use SendCloud\SendCloud\CheckoutCore\Domain\Interfaces\DTOInstantiable;
77

8+
/**
9+
* Class DeliveryDay
10+
*
11+
* @package SendCloud\SendCloud\CheckoutCore\Domain\Delivery
12+
*/
813
class DeliveryDay implements Comparable, DTOInstantiable
914
{
1015
/**

CheckoutCore/Domain/Delivery/DeliveryMethod.php

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
use SendCloud\SendCloud\CheckoutCore\Domain\Interfaces\Updateable;
1414
use SendCloud\SendCloud\CheckoutCore\Utility\CollectionComparator;
1515

16+
/**
17+
* Class DeliveryMethod
18+
*
19+
* @package SendCloud\SendCloud\CheckoutCore\Domain\Delivery
20+
*/
1621
class DeliveryMethod implements DTOInstantiable, Updateable, Identifiable
1722
{
1823
/**

CheckoutCore/Domain/Delivery/DeliveryZone.php

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
use SendCloud\SendCloud\CheckoutCore\Domain\Interfaces\Identifiable;
77
use SendCloud\SendCloud\CheckoutCore\Domain\Interfaces\Updateable;
88

9+
/**
10+
* Class DeliveryZone
11+
*
12+
* @package SendCloud\SendCloud\CheckoutCore\Domain\Delivery
13+
*/
914
class DeliveryZone implements DTOInstantiable, Updateable, Identifiable
1015
{
1116
/**

0 commit comments

Comments
 (0)