Skip to content

Commit

Permalink
pint
Browse files Browse the repository at this point in the history
  • Loading branch information
milwad-dev committed Jul 18, 2024
1 parent 857b6a8 commit 3f06c79
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 22 deletions.
4 changes: 0 additions & 4 deletions src/Events/LaravelCartDecreaseQuantityEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@

namespace Binafy\LaravelCart\Events;

use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;

Expand Down
4 changes: 0 additions & 4 deletions src/Events/LaravelCartEmptyEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@

namespace Binafy\LaravelCart\Events;

use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;

Expand Down
4 changes: 0 additions & 4 deletions src/Events/LaravelCartIncreaseQuantityEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@

namespace Binafy\LaravelCart\Events;

use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;

Expand Down
4 changes: 0 additions & 4 deletions src/Events/LaravelCartRemoveItemEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@

namespace Binafy\LaravelCart\Events;

use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;

Expand Down
4 changes: 0 additions & 4 deletions src/Events/LaravelCartStoreItemEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@

namespace Binafy\LaravelCart\Events;

use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;

Expand Down
2 changes: 1 addition & 1 deletion src/Models/Cart.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

namespace Binafy\LaravelCart\Models;

use Binafy\LaravelCart\Events\LaravelCartStoreItemEvent;
use Binafy\LaravelCart\Cartable;
use Binafy\LaravelCart\Events\LaravelCartDecreaseQuantityEvent;
use Binafy\LaravelCart\Events\LaravelCartEmptyEvent;
use Binafy\LaravelCart\Events\LaravelCartIncreaseQuantityEvent;
use Binafy\LaravelCart\Events\LaravelCartRemoveItemEvent;
use Binafy\LaravelCart\Events\LaravelCartStoreItemEvent;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;

Expand Down
1 change: 0 additions & 1 deletion tests/Feature/Models/CartUpdateQuantityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

use Binafy\LaravelCart\Events\LaravelCartDecreaseQuantityEvent;
use Binafy\LaravelCart\Events\LaravelCartIncreaseQuantityEvent;
use Binafy\LaravelCart\Events\LaravelCartStoreItemEvent;
use Binafy\LaravelCart\Models\Cart;
use Binafy\LaravelCart\Models\CartItem;
use Illuminate\Foundation\Testing\RefreshDatabase;
Expand Down

0 comments on commit 3f06c79

Please sign in to comment.