Skip to content

Commit

Permalink
chore(deps-dev): bump laravel/pint from 1.18.1 to 1.18.2 (#1497)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump laravel/pint from 1.18.1 to 1.18.2

Bumps [laravel/pint](https://github.com/laravel/pint) from 1.18.1 to 1.18.2.
- [Release notes](https://github.com/laravel/pint/releases)
- [Changelog](https://github.com/laravel/pint/blob/main/CHANGELOG.md)
- [Commits](laravel/pint@v1.18.1...v1.18.2)

---
updated-dependencies:
- dependency-name: laravel/pint
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: adjust to new Pint defaults

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Connor Tumbleson <[email protected]>
  • Loading branch information
dependabot[bot] and iBotPeaches authored Nov 23, 2024
1 parent 14443bd commit 3ed8965
Show file tree
Hide file tree
Showing 85 changed files with 221 additions and 221 deletions.
10 changes: 5 additions & 5 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions tests/Feature/Console/CheckForBanTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ class CheckForBanTest extends TestCase
{
use WithFaker;

public function testInvalidGamertag(): void
public function test_invalid_gamertag(): void
{
$this
->artisan('app:check-for-ban', ['gamertag' => '999999999'])
->assertExitCode(CommandAlias::FAILURE);
}

public function testValidDataPullAsBannedUser(): void
public function test_valid_data_pull_as_banned_user(): void
{
// Arrange
$gamertag = $this->faker->word.$this->faker->numerify;
Expand Down Expand Up @@ -51,7 +51,7 @@ public function testValidDataPullAsBannedUser(): void
]);
}

public function testValidDataPullAsUnbannedUser(): void
public function test_valid_data_pull_as_unbanned_user(): void
{
// Arrange
$gamertag = $this->faker->word.$this->faker->numerify;
Expand Down
4 changes: 2 additions & 2 deletions tests/Feature/Console/CheckForUnbanTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class CheckForUnbanTest extends TestCase
{
use WithFaker;

public function testUnbanning(): void
public function test_unbanning(): void
{
// Arrange
$playerBan = PlayerBan::factory()
Expand All @@ -30,7 +30,7 @@ public function testUnbanning(): void
->expectsOutput("Player {$playerBan->player->gamertag} has been unbanned.");
}

public function testUnbanFailsOnActiveCheater(): void
public function test_unban_fails_on_active_cheater(): void
{
// Arrange
$playerBan = PlayerBan::factory()
Expand Down
6 changes: 3 additions & 3 deletions tests/Feature/Console/CreateOverviewTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@

class CreateOverviewTest extends TestCase
{
public function testMissingMapAndGame(): void
public function test_missing_map_and_game(): void
{
$this->artisan('app:create-overview')
->expectsQuestion('What is the map uuid?', '123')
->expectsOutput('Map/Game not found.')
->assertExitCode(1);
}

public function testValidMap(): void
public function test_valid_map(): void
{
// Arrange
$map = Map::factory()->create();
Expand All @@ -29,7 +29,7 @@ public function testValidMap(): void
->assertExitCode(0);
}

public function testValidGame(): void
public function test_valid_game(): void
{
// Arrange
$game = Game::factory()->create();
Expand Down
12 changes: 6 additions & 6 deletions tests/Feature/Console/PullChampionshipTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class PullChampionshipTest extends TestCase
use WithFaker;

#[DataProvider('championshipTypeDataProvider')]
public function testValidDataPull(string $type): void
public function test_valid_data_pull(string $type): void
{
// Arrange
Queue::fake();
Expand All @@ -46,7 +46,7 @@ public function testValidDataPull(string $type): void
Queue::assertPushed(FindPlayersFromTeam::class);
}

public function testValidDataPullAsFfa(): void
public function test_valid_data_pull_as_ffa(): void
{
// Arrange
Queue::fake();
Expand Down Expand Up @@ -74,7 +74,7 @@ public function testValidDataPullAsFfa(): void
Queue::assertPushed(FindPlayersFromTeam::class);
}

public function testValidDataPullWithInvalidType(): void
public function test_valid_data_pull_with_invalid_type(): void
{
// Expectations
$this->expectException(InvalidArgumentException::class);
Expand All @@ -97,7 +97,7 @@ public function testValidDataPullWithInvalidType(): void
->assertExitCode(CommandAlias::FAILURE);
}

public function testValidDataPullWithInvalidRegion(): void
public function test_valid_data_pull_with_invalid_region(): void
{
// Expectations
$this->expectException(InvalidArgumentException::class);
Expand All @@ -120,7 +120,7 @@ public function testValidDataPullWithInvalidRegion(): void
->assertExitCode(CommandAlias::FAILURE);
}

public function testInvalidStatusEnumPullOnChampionship(): void
public function test_invalid_status_enum_pull_on_championship(): void
{
// Expectations
$this->expectException(InvalidArgumentException::class);
Expand All @@ -141,7 +141,7 @@ public function testInvalidStatusEnumPullOnChampionship(): void
Http::assertSequencesAreEmpty();
}

public function testInvalidStatusEnumPullOnMatchup(): void
public function test_invalid_status_enum_pull_on_matchup(): void
{
// Expectations
$this->expectException(InvalidArgumentException::class);
Expand Down
4 changes: 2 additions & 2 deletions tests/Feature/Console/PullHaloDataTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ class PullHaloDataTest extends TestCase
{
use WithFaker;

public function testInvalidGamertag(): void
public function test_invalid_gamertag(): void
{
$this
->artisan('app:pull-halo-data', ['player' => '999999999'])
->assertExitCode(CommandAlias::FAILURE);
}

public function testValidDataPull(): void
public function test_valid_data_pull(): void
{
// Arrange
$gamertag = $this->faker->word.$this->faker->numerify;
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Console/PullMatchupGameTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class PullMatchupGameTest extends TestCase
{
use WithFaker;

public function testValidDataPull(): void
public function test_valid_data_pull(): void
{
// Arrange
$gamertag = $this->faker->word.$this->faker->numerify;
Expand Down
10 changes: 5 additions & 5 deletions tests/Feature/Console/PullMetadataTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class PullMetadataTest extends TestCase
{
use WithFaker;

public function testValidDataPull(): void
public function test_valid_data_pull(): void
{
// Arrange
$mockMedalsResponse = (new MockMedalsService)->success();
Expand Down Expand Up @@ -53,7 +53,7 @@ public function testValidDataPull(): void
->assertExitCode(CommandAlias::SUCCESS);
}

public function testInvalidPullNewType(): void
public function test_invalid_pull_new_type(): void
{
// Expectations
$this->expectException(\InvalidArgumentException::class);
Expand All @@ -70,7 +70,7 @@ public function testInvalidPullNewType(): void
->assertExitCode(CommandAlias::FAILURE);
}

public function testInvalidInputForPlaylist(): void
public function test_invalid_input_for_playlist(): void
{
// Expectations
$this->expectException(\InvalidArgumentException::class);
Expand All @@ -95,7 +95,7 @@ public function testInvalidInputForPlaylist(): void
->assertExitCode(CommandAlias::FAILURE);
}

public function testInvalidQueueForPlaylist(): void
public function test_invalid_queue_for_playlist(): void
{
// Expectations
$this->expectException(\InvalidArgumentException::class);
Expand All @@ -120,7 +120,7 @@ public function testInvalidQueueForPlaylist(): void
->assertExitCode(CommandAlias::FAILURE);
}

public function testInvalidPullNewDifficulty(): void
public function test_invalid_pull_new_difficulty(): void
{
// Expectations
$this->expectException(\InvalidArgumentException::class);
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Console/PullOverviewImagesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class PullOverviewImagesTest extends TestCase
{
use WithFaker;

public function testDownloadOfMapImages(): void
public function test_download_of_map_images(): void
{
// Arrange
Http::preventStrayRequests();
Expand Down
4 changes: 2 additions & 2 deletions tests/Feature/Console/RefreshAnalyticsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class RefreshAnalyticsTest extends TestCase
{
use WithFaker;

public function testValidDispatchOfJobs(): void
public function test_valid_dispatch_of_jobs(): void
{
// Arrange
Queue::fake();
Expand All @@ -28,7 +28,7 @@ public function testValidDispatchOfJobs(): void
Queue::assertPushed(ProcessAnalytic::class);
}

public function testValidDispatchOfSpecificJob(): void
public function test_valid_dispatch_of_specific_job(): void
{
// Arrange
Queue::fake();
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Console/RefreshManualOverviewsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class RefreshManualOverviewsTest extends TestCase
{
use WithFaker;

public function testValidGenerationOfOverviews(): void
public function test_valid_generation_of_overviews(): void
{
// Arrange
$overview = Overview::factory()->createOne([
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Console/RefreshMedalsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class RefreshMedalsTest extends TestCase
{
use WithFaker;

public function testValidDispatchOfJobs(): void
public function test_valid_dispatch_of_jobs(): void
{
// Arrange
Queue::fake();
Expand Down
6 changes: 3 additions & 3 deletions tests/Feature/Console/RefreshOverviewsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class RefreshOverviewsTest extends TestCase
{
use WithFaker;

public function testValidGenerationOfOverviews(): void
public function test_valid_generation_of_overviews(): void
{
// Arrange
$level = Level::factory()->createOne();
Expand Down Expand Up @@ -113,7 +113,7 @@ public function testValidGenerationOfOverviews(): void
->assertOk();
}

public function testUnknownGametype(): void
public function test_unknown_gametype(): void
{
// Expectations
$this->expectExceptionMessage('Unable to find base gametype for: not a real gametype');
Expand All @@ -132,7 +132,7 @@ public function testUnknownGametype(): void
->assertFailed();
}

public function testOverviewRecentlyGeneratedSkipped(): void
public function test_overview_recently_generated_skipped(): void
{
$game = Game::factory()->createOne();
Overview::factory()->createOne([
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Console/SitemapGenerateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class SitemapGenerateTest extends TestCase
{
use WithFaker;

public function testSitemapGeneration(): void
public function test_sitemap_generation(): void
{
// Arrange
Matchup::factory()->createOne();
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Exports/ExportGameTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class ExportGameTest extends TestCase
{
public function testExportGame(): void
public function test_export_game(): void
{
// Arrange
Http::fake();
Expand Down
8 changes: 4 additions & 4 deletions tests/Feature/Exports/ExportMatchHistoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

class ExportMatchHistoryTest extends TestCase
{
public function testExportGameRecordsAsMatches(): void
public function test_export_game_records_as_matches(): void
{
// Arrange
Http::fake();
Expand All @@ -34,7 +34,7 @@ public function testExportGameRecordsAsMatches(): void
$this->assertIsString($response->streamedContent());
}

public function testExportGameRecordsAsRandom(): void
public function test_export_game_records_as_random(): void
{
// Arrange
Http::fake();
Expand All @@ -54,7 +54,7 @@ public function testExportGameRecordsAsRandom(): void
$this->assertIsString($response->streamedContent());
}

public function testExportGameRecordsAsCustom(): void
public function test_export_game_records_as_custom(): void
{
// Arrange
Http::fake();
Expand All @@ -78,7 +78,7 @@ public function testExportGameRecordsAsCustom(): void
$this->assertIsString($response->streamedContent());
}

public function testExportGameRecordsAsLan(): void
public function test_export_game_records_as_lan(): void
{
// Arrange
Http::fake();
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Exports/ExportScrimPlayersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

class ExportScrimPlayersTest extends TestCase
{
public function testExportScrimPlayers(): void
public function test_export_scrim_players(): void
{
// Arrange
Http::fake();
Expand Down
6 changes: 3 additions & 3 deletions tests/Feature/Forms/AddGamer/InvalidGamerFormTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class InvalidGamerFormTest extends TestCase
{
#[DataProvider('invalidTextDataProvider')]
public function testInvalidTestSubmitted(?string $gamertag, string $validationError): void
public function test_invalid_test_submitted(?string $gamertag, string $validationError): void
{
// Arrange & Act & Assert
Livewire::test(AddGamerForm::class)
Expand All @@ -28,7 +28,7 @@ public function testInvalidTestSubmitted(?string $gamertag, string $validationEr
}

#[DataProvider('invalidApiDataProvider')]
public function testInvalidResponseFromDotApi(callable $mockResponse, int $statusCode): void
public function test_invalid_response_from_dot_api(callable $mockResponse, int $statusCode): void
{
// Arrange
$mockResponse = call_user_func($mockResponse);
Expand All @@ -44,7 +44,7 @@ public function testInvalidResponseFromDotApi(callable $mockResponse, int $statu
->assertHasErrors(['gamertag']);
}

public function testGracefulFallbackIfXuidNotFoundAndApiCallFails(): void
public function test_graceful_fallback_if_xuid_not_found_and_api_call_fails(): void
{
// Arrange
$mockAppearanceResponse = (new MockAppearanceService)->success();
Expand Down
Loading

0 comments on commit 3ed8965

Please sign in to comment.