From e52904e0be8c0792a1101d3cf83b2c6c5e51651b Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Sun, 22 Dec 2024 16:04:49 +0000 Subject: [PATCH] Apply fixes from StyleCI --- packages/framework/src/Console/Commands/PublishViewsCommand.php | 1 - .../tests/Feature/Commands/PublishViewsCommandTest.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/framework/src/Console/Commands/PublishViewsCommand.php b/packages/framework/src/Console/Commands/PublishViewsCommand.php index 303b52a94e3..88c2280b729 100644 --- a/packages/framework/src/Console/Commands/PublishViewsCommand.php +++ b/packages/framework/src/Console/Commands/PublishViewsCommand.php @@ -9,7 +9,6 @@ use Hyde\Console\Helpers\InteractivePublishCommandHelper; use Illuminate\Support\Facades\Artisan; -use function Laravel\Prompts\multiselect; use function str_replace; use function sprintf; use function strstr; diff --git a/packages/framework/tests/Feature/Commands/PublishViewsCommandTest.php b/packages/framework/tests/Feature/Commands/PublishViewsCommandTest.php index aea48742783..d3999f7266e 100644 --- a/packages/framework/tests/Feature/Commands/PublishViewsCommandTest.php +++ b/packages/framework/tests/Feature/Commands/PublishViewsCommandTest.php @@ -67,7 +67,7 @@ public function testInteractiveSelectionOnUnixSystems() }); $this->artisan('publish:views components --interactive') - ->expectsOutput("Published files [article-excerpt.blade.php]") + ->expectsOutput('Published files [article-excerpt.blade.php]') ->assertExitCode(0); $this->assertFileExists(Hyde::path('resources/views/vendor/hyde/components/article-excerpt.blade.php'));