Skip to content

Commit

Permalink
fix: use separate folders
Browse files Browse the repository at this point in the history
  • Loading branch information
brokeyourbike committed Jan 3, 2022
1 parent f737af1 commit a0e8f6e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
namespace BrokeYourBike\Paystack;

use BrokeYourBike\ResolveUri\ResolveUriTrait;
use BrokeYourBike\Paystack\ResolveAccountNumberResponse;
use BrokeYourBike\Paystack\ConfigInterface;
use BrokeYourBike\Paystack\Models\ResolveAccountNumberResponse;
use BrokeYourBike\Paystack\Interfaces\ConfigInterface;
use BrokeYourBike\HttpClient\HttpClientTrait;
use BrokeYourBike\HttpClient\HttpClientInterface;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at https://mozilla.org/MPL/2.0/.

namespace BrokeYourBike\Paystack;
namespace BrokeYourBike\Paystack\Interfaces;

/**
* @author Ivan Stasiuk <ivan@stasi.uk>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at https://mozilla.org/MPL/2.0/.

namespace BrokeYourBike\Paystack;
namespace BrokeYourBike\Paystack\Models;

use Spatie\DataTransferObject\Attributes\MapFrom;
use BrokeYourBike\DataTransferObject\JsonResponse;
Expand Down
2 changes: 1 addition & 1 deletion tests/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

use PHPUnit\Framework\TestCase;
use BrokeYourBike\ResolveUri\ResolveUriTrait;
use BrokeYourBike\Paystack\ConfigInterface;
use BrokeYourBike\Paystack\Interfaces\ConfigInterface;
use BrokeYourBike\Paystack\Client;
use BrokeYourBike\HttpClient\HttpClientTrait;
use BrokeYourBike\HttpClient\HttpClientInterface;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at https://mozilla.org/MPL/2.0/.

namespace BrokeYourBike\Paystack\Tests;
namespace BrokeYourBike\Paystack\Tests\Models;

use PHPUnit\Framework\TestCase;
use BrokeYourBike\Paystack\ResolveAccountNumberResponse;
use BrokeYourBike\Paystack\Models\ResolveAccountNumberResponse;

/**
* @author Ivan Stasiuk <brokeyourbike@gmail.com>
Expand Down
4 changes: 2 additions & 2 deletions tests/ResolveAccountNumberTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

use Psr\Http\Message\ResponseInterface;
use PHPUnit\Framework\TestCase;
use BrokeYourBike\Paystack\ResolveAccountNumberResponse;
use BrokeYourBike\Paystack\ConfigInterface;
use BrokeYourBike\Paystack\Models\ResolveAccountNumberResponse;
use BrokeYourBike\Paystack\Interfaces\ConfigInterface;
use BrokeYourBike\Paystack\Client;

class ResolveAccountNumberTest extends TestCase
Expand Down

0 comments on commit a0e8f6e

Please sign in to comment.