Skip to content

Commit

Permalink
Remove unnecessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdnbrk committed Oct 7, 2024
1 parent d2853b9 commit f2e53de
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
5 changes: 2 additions & 3 deletions app/Jobs/CacheBitcoinPrice.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@

namespace App\Jobs;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Foundation\Queue\Queueable;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Http;

class CacheBitcoinPrice implements ShouldQueue
{
use Dispatchable, Queueable;
use Queueable;

protected string $apiUrl;

Expand Down
5 changes: 2 additions & 3 deletions app/Jobs/CacheOrdinalsCollectionStats.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@

namespace App\Jobs;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Foundation\Queue\Queueable;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Str;

class CacheOrdinalsCollectionStats implements ShouldQueue
{
use Dispatchable, Queueable;
use Queueable;

protected string $apiUrl;

Expand Down
4 changes: 1 addition & 3 deletions app/Jobs/FetchMetaData.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@
use App\Models\Inscription;
use Exception;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Foundation\Queue\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Http;

class FetchMetaData implements ShouldQueue
{
use Dispatchable, Queueable, SerializesModels;
use Queueable;

public string $url;

Expand Down

0 comments on commit f2e53de

Please sign in to comment.