Skip to content

Commit

Permalink
Reorder class imports
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmile committed Jul 3, 2024
1 parent 4e0ae77 commit 3bc1d4c
Show file tree
Hide file tree
Showing 22 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion tests/Api/BioApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Tests\Api;

use PHPUnit\Framework\Attributes\Test;
use App\Models\Bio;
use PHPUnit\Framework\Attributes\Test;

class BioApiTest extends ApiTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Api/ConferenceApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Tests\Api;

use PHPUnit\Framework\Attributes\Test;
use App\Models\Conference;
use PHPUnit\Framework\Attributes\Test;

class ConferenceApiTest extends ApiTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Api/TalkApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Tests\Api;

use PHPUnit\Framework\Attributes\Test;
use App\Models\Talk;
use App\Models\TalkRevision;
use PHPUnit\Framework\Attributes\Test;

class TalkApiTest extends ApiTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Console/Commands/TweetImportantCFPDatesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace Tests\Console\Commands;

use PHPUnit\Framework\Attributes\Test;
use App\Console\Commands\TweetImportantCFPDates;
use App\Models\Conference;
use Atymic\Twitter\ApiV1\Service\Twitter;
use Carbon\Carbon;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class TweetImportantCFPDatesTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/AcceptanceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

namespace Tests;

use PHPUnit\Framework\Attributes\Test;
use App\Models\Acceptance;
use App\Models\Conference;
use App\Models\Submission;
use App\Models\Talk;
use App\Models\TalkRevision;
use App\Models\User;
use PHPUnit\Framework\Attributes\Test;

class AcceptanceTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/AccountTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Http\Livewire\ConferenceList;
use App\Models\Bio;
use App\Models\Conference;
Expand All @@ -15,6 +14,7 @@
use Illuminate\Support\Facades\Notification;
use Illuminate\Support\Facades\Storage;
use Livewire\Livewire;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class AccountTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/AdminTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Models\Conference;
use App\Models\User;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class AdminTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/BiosTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Models\Bio;
use App\Models\User;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class BiosTest extends TestCase
Expand Down
4 changes: 2 additions & 2 deletions tests/Feature/CallingAllPapersConferenceImporterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Before;
use PHPUnit\Framework\Attributes\Test;
use App\CallingAllPapers\ConferenceImporter;
use App\Casts\Coordinates;
use App\Exceptions\InvalidAddressGeocodingException;
use App\Models\Conference;
use App\Services\Geocoder;
use PHPUnit\Framework\Attributes\Before;
use PHPUnit\Framework\Attributes\Test;
use Tests\MocksCallingAllPapers;
use Tests\TestCase;

Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/ConferenceIssuesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Models\Conference;
use App\Models\ConferenceIssue;
use App\Models\User;
use App\Notifications\ConferenceIssueReported;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Notification;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class ConferenceIssuesTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/ConferenceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Http\Livewire\ConferenceList;
use App\Models\Conference;
use App\Models\User;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Notification;
use Livewire\Livewire;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class ConferenceTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/NotificationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Models\Conference;
use App\Models\User;
use App\Notifications\CFPsAreOpen;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Notification;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class NotificationTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/PublicSpeakerProfileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Mail\ContactRequest;
use App\Models\Bio;
use App\Models\Talk;
Expand All @@ -11,6 +10,7 @@
use App\Services\FakeCaptcha;
use Captcha\Captcha;
use Illuminate\Support\Facades\Mail;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class PublicSpeakerProfileTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/RejectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Models\Conference;
use App\Models\Rejection;
use App\Models\Submission;
use App\Models\Talk;
use App\Models\TalkRevision;
use App\Models\User;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class RejectionTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/SpeakerPackageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Casts\SpeakerPackage;
use App\Models\Conference;
use App\Models\User;
use Illuminate\Support\Facades\App;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class SpeakerPackageTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/SubmissionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Models\Conference;
use App\Models\Rejection;
use App\Models\Submission;
use App\Models\Talk;
use App\Models\TalkRevision;
use App\Models\User;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class SubmissionTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/SyncCallingAllPapersEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Notifications\ConferenceImporterError;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Notification;
use PHPUnit\Framework\Attributes\Test;
use Tests\MocksCallingAllPapers;
use Tests\TestCase;

Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/TalkReactionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Models\Talk;
use Illuminate\Foundation\Testing\RefreshDatabase;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class TalkReactionsTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/TalkTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Models\Acceptance;
use App\Models\Conference;
use App\Models\Submission;
use App\Models\Talk;
use App\Models\TalkRevision;
use App\Models\User;
use Carbon\Carbon;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class TalkTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/UserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Models\Conference;
use App\Models\Talk;
use App\Models\User;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class UserTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/VerifyConferenceImporterHeartbeatTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Notifications\ConferenceImporterInactive;
use Illuminate\Support\Facades\Notification;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class VerifyConferenceImporterHeartbeatTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/GeocoderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Tests\Feature;

use PHPUnit\Framework\Attributes\Test;
use App\Exceptions\InvalidAddressGeocodingException;
use App\Services\Geocoder;
use Illuminate\Support\Facades\Http;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;

class GeocoderTest extends TestCase
Expand Down

0 comments on commit 3bc1d4c

Please sign in to comment.