Skip to content

Commit

Permalink
feat: fix namespace of new added test-Classes
Browse files Browse the repository at this point in the history
add ContainerAwareInterface and ContainerAwareTrait to support symfony 7
  • Loading branch information
Chris8934 committed Apr 7, 2024
1 parent a3e2e6f commit 5bc161e
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Tests/ContainerAwareCoreGatewayFactoryTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Payum\Core\Tests\Bridge\Symfony;
namespace Payum\Bundle\PayumBundle\Tests;

use Payum\Core\Bridge\Spl\ArrayObject;
use Payum\Bundle\PayumBundle\ContainerAwareCoreGatewayFactory;
Expand Down
2 changes: 1 addition & 1 deletion Tests/ContainerAwareRegistryTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Payum\Core\Tests\Bridge\Symfony;
namespace Payum\Bundle\PayumBundle\Tests;

use Payum\Bundle\PayumBundle\ContainerAwareRegistry;
use Payum\Core\GatewayFactoryInterface;
Expand Down
2 changes: 1 addition & 1 deletion Tests/Extension/EventDispatcherExtensionTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Payum\Core\Tests\Bridge\Symfony\Extension;
namespace Payum\Bundle\PayumBundle\Tests\Extension;

use Payum\Bundle\PayumBundle\Event\ExecuteEvent;
use Payum\Bundle\PayumBundle\Extension\EventDispatcherExtension;
Expand Down
2 changes: 1 addition & 1 deletion Tests/Form/Type/CreditCardExpirationDateTypeTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Payum\Core\Tests\Bridge\Symfony\Form\Type;
namespace Payum\Bundle\PayumBundle\Tests\Form\Type;

use Payum\Bundle\PayumBundle\Form\Type\CreditCardExpirationDateType;
use PHPUnit\Framework\TestCase;
Expand Down
2 changes: 1 addition & 1 deletion Tests/Form/Type/CreditCardTypeTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Payum\Core\Tests\Bridge\Symfony\Form\Type;
namespace Payum\Bundle\PayumBundle\Tests\Form\Type;

use Payum\Bundle\PayumBundle\Form\Type\CreditCardType;
use Payum\Core\Model\CreditCard;
Expand Down
2 changes: 1 addition & 1 deletion Tests/Form/Type/GatewayConfigTypeTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Payum\Core\Tests\Bridge\Symfony\Form\Type;
namespace Payum\Bundle\PayumBundle\Tests\Form\Type;

use Payum\Bundle\PayumBundle\Form\Type\GatewayConfigType;
use Payum\Core\Model\GatewayConfig;
Expand Down
2 changes: 1 addition & 1 deletion Tests/Form/Type/GatewayFactoriesChoiceTypeTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Payum\Core\Tests\Bridge\Symfony\Form\Type;
namespace Payum\Bundle\PayumBundle\Tests\Form\Type;

use Payum\Bundle\PayumBundle\Form\Type\GatewayFactoriesChoiceType;
use PHPUnit\Framework\TestCase;
Expand Down
2 changes: 1 addition & 1 deletion Tests/Reply/HttpResponseTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Payum\Core\Tests\Bridge\Symfony\Reply;
namespace Payum\Bundle\PayumBundle\Tests\Reply;

use Payum\Bundle\PayumBundle\Reply\HttpResponse;
use Payum\Core\Reply\Base;
Expand Down
2 changes: 1 addition & 1 deletion Tests/ReplyToSymfonyResponseConverterTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Payum\Core\Tests\Bridge\Symfony;
namespace Payum\Bundle\PayumBundle\Tests;

use Payum\Bundle\PayumBundle\Reply\HttpResponse as SymfonyHttpResponse;
use Payum\Bundle\PayumBundle\ReplyToSymfonyResponseConverter;
Expand Down
2 changes: 1 addition & 1 deletion Tests/Security/HttpRequestVerifierTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Payum\Core\Tests\Bridge\Symfony\Security;
namespace Payum\Bundle\PayumBundle\Tests\Security;

use Payum\Bundle\PayumBundle\Security\HttpRequestVerifier;
use Payum\Core\Exception\InvalidArgumentException;
Expand Down
2 changes: 1 addition & 1 deletion Tests/Security/TokenFactoryTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Payum\Core\Tests\Bridge\Symfony\Security;
namespace Payum\Bundle\PayumBundle\Tests\Security;

use Payum\Bundle\PayumBundle\Security\TokenFactory;
use Payum\Core\Model\Identity;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Payum\Core\Tests\Bridge\Symfony\Validator\Constraints;
namespace Payum\Bundle\PayumBundle\Tests\Validator\Constraints;

use Datetime;
use Payum\Bundle\PayumBundle\Validator\Constraints\CreditCardDate;
Expand Down

0 comments on commit 5bc161e

Please sign in to comment.