diff --git a/src/Events/InvoicePurchasedEvent.php b/src/Events/InvoicePurchasedEvent.php index 31392a5..79d75d7 100644 --- a/src/Events/InvoicePurchasedEvent.php +++ b/src/Events/InvoicePurchasedEvent.php @@ -2,13 +2,9 @@ namespace Shetabit\Payment\Events; -use Illuminate\Broadcasting\Channel; use Illuminate\Queue\SerializesModels; -use Illuminate\Broadcasting\PrivateChannel; -use Illuminate\Broadcasting\PresenceChannel; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Broadcasting\InteractsWithSockets; -use Illuminate\Contracts\Broadcasting\ShouldBroadcast; use Shetabit\Multipay\Contracts\DriverInterface; use Shetabit\Multipay\Invoice; diff --git a/src/Events/InvoiceVerifiedEvent.php b/src/Events/InvoiceVerifiedEvent.php index 25f95fb..b858087 100644 --- a/src/Events/InvoiceVerifiedEvent.php +++ b/src/Events/InvoiceVerifiedEvent.php @@ -2,13 +2,9 @@ namespace Shetabit\Payment\Events; -use Illuminate\Broadcasting\Channel; use Illuminate\Queue\SerializesModels; -use Illuminate\Broadcasting\PrivateChannel; -use Illuminate\Broadcasting\PresenceChannel; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Broadcasting\InteractsWithSockets; -use Illuminate\Contracts\Broadcasting\ShouldBroadcast; use Shetabit\Multipay\Contracts\DriverInterface; use Shetabit\Multipay\Contracts\ReceiptInterface; use Shetabit\Multipay\Invoice; diff --git a/tests/TestCase.php b/tests/TestCase.php index f049e68..9d85af4 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -3,7 +3,7 @@ namespace Shetabit\Payment\Tests; use Orchestra\Testbench\TestCase as BaseTestCase; -use Shetabit\Payment\Tests\Mocks\Drivers\BarDriver; +use Shetabit\Multipay\Tests\Drivers\BarDriver; class TestCase extends BaseTestCase {