Skip to content

Commit

Permalink
main merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
SecondeJK committed Jun 24, 2024
2 parents 1859210 + 060cbfe commit 94b7fa2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
6 changes: 6 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
<testsuite name="client">
<directory>test/Client</directory>
</testsuite>
<testsuite name="conversations">
<directory>test/Conversation</directory>
</testsuite>
<testsuite name="client">
<directory>test/Client</directory>
</testsuite>
<testsuite name="proactive_connect">
<directory>test/ProactiveConnect</directory>
</testsuite>
Expand Down
1 change: 0 additions & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,6 @@ public static function authRequest(RequestInterface $request, Basic $credentials

/**
* @throws ClientException
* @deprecated Use the Vonage/JWT library if you need to generate a token
*/
public function generateJwt($claims = []): Token
{
Expand Down
4 changes: 0 additions & 4 deletions test/Client/Credentials/Handler/GnpHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,9 @@
use Prophecy\PhpUnit\ProphecyTrait;
use Prophecy\Prophecy\ObjectProphecy;
use Vonage\Client;
use Vonage\Client\Credentials\Basic;
use Vonage\Client\Credentials\Gnp;
use Vonage\Client\Credentials\Handler\BasicQueryHandler;
use PHPUnit\Framework\TestCase;
use Vonage\Client\Credentials\Handler\GnpHandler;
use Vonage\Client\Credentials\Handler\KeypairHandler;
use Vonage\Client\Credentials\Keypair;
use VonageTest\Psr7AssertionTrait;

class GnpHandlerTest extends TestCase
Expand Down
4 changes: 2 additions & 2 deletions test/SimSwap/ClientIntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace SimSwap;
namespace VonageTest\SimSwap;

use VonageTest\VonageTestCase;
use Vonage\Client;
Expand All @@ -18,7 +18,7 @@ public function setUp(): void
{
$this->key = file_get_contents(__DIR__ . '/../Client/Credentials/test.key');

parent::setUp(); // TODO: Change the autogenerated stub
parent::setUp();
}

public function testWillConfigureClientCorrectly(): void
Expand Down

0 comments on commit 94b7fa2

Please sign in to comment.