Skip to content

Commit

Permalink
RATEPLUG-33: fix namespaces (#40)
Browse files Browse the repository at this point in the history
* RATEPLUG-33: fix namespaces configservice && dfpservice

* RATEPLUG-33: fix namespaces configservice && dfpservice

* sw53x-RATEPLUG-33: add changelog
  • Loading branch information
rommelfreddy authored Jan 15, 2020
1 parent 77a1775 commit fa9931f
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Bootstrapping/Events/BackendOrderControllerSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Shopware\Models\Customer\Customer;
use Shopware\Models\Order\Order;
use RpayRatePay\Component\Service\ConfigLoader;
use Shopware\Plugins\Community\Frontend\RpayRatePay\Services\DfpService;
use RpayRatePay\Services\DfpService;
use SwagBackendOrder\Components\Order\Struct\OrderStruct;

class BackendOrderControllerSubscriber implements \Enlight\Event\SubscriberInterface
Expand Down
4 changes: 2 additions & 2 deletions Bootstrapping/Events/TemplateExtensionSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace RpayRatePay\Bootstrapping\Events;

use RpayRatePay\Component\Model\ShopwareCustomerWrapper;
use Shopware\Plugins\Community\Frontend\RpayRatePay\Services\ConfigService;
use Shopware\Plugins\Community\Frontend\RpayRatePay\Services\DfpService;
use RpayRatePay\Services\ConfigService;
use RpayRatePay\Services\DfpService;

class TemplateExtensionSubscriber implements \Enlight\Event\SubscriberInterface
{
Expand Down
2 changes: 1 addition & 1 deletion Component/Service/SessionLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use RpayRatePay\Component\Mapper\BankData;
use RpayRatePay\Component\Mapper\PaymentRequestData;
use RpayRatePay\Component\Model\ShopwareCustomerWrapper;
use Shopware\Plugins\Community\Frontend\RpayRatePay\Services\DfpService;
use RpayRatePay\Services\DfpService;

class SessionLoader
{
Expand Down
5 changes: 2 additions & 3 deletions Controller/frontend/RpayRatepay.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@
use RpayRatePay\Component\Service\PaymentProcessor;
use RpayRatePay\Component\Model\ShopwareCustomerWrapper;
use RpayRatePay\Component\Service\Logger;
use \RpayRatePay\Component\Service\ConfigLoader;
use \Shopware\Plugins\Community\Frontend\RpayRatePay\Services\DfpService;
use Shopware\Plugins\Community\Frontend\RpayRatePay\Services\ProfileConfigService;
use RpayRatePay\Component\Service\ConfigLoader;
use RpayRatePay\Services\DfpService;

class Shopware_Controllers_Frontend_RpayRatepay extends Shopware_Controllers_Frontend_Payment implements CSRFWhitelistAware
{
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
* RATEPLUG-24: add support for different stores/subshops
* RATEPLUG-27: fix batch processing (admin)
* RATEPLUG-28: fix double click on "order now"-button
* RATEPLUG-33: fix namespaces
* RATEPLUG-67: set phone number as not required field and apply static phonenumber if no phone number is provided
* fix a few bugs with zero percent installment

Expand Down
2 changes: 1 addition & 1 deletion Services/ConfigService.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php


namespace Shopware\Plugins\Community\Frontend\RpayRatePay\Services;
namespace RpayRatePay\Services;


use Shopware\Components\Model\ModelManager;
Expand Down
4 changes: 2 additions & 2 deletions Services/DfpService.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php


namespace Shopware\Plugins\Community\Frontend\RpayRatePay\Services;
namespace RpayRatePay\Services;


use Shopware\Components\DependencyInjection\Container;

/**
* ServiceClass for device fingerprinting
* Class DfpService
* @package Shopware\Plugins\Community\Frontend\RpayRatePay\Services
* @package RpayRatePay\Services
*/
class DfpService
{
Expand Down

0 comments on commit fa9931f

Please sign in to comment.