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'));