Skip to content

Commit 34e3f88

Browse files
committed
coverage
1 parent 2ce523d commit 34e3f88

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Scaffolding/Commands/Queue/InstallCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function execute( array $parameters = [] ): int
7777
$this->output->info( " - Configuration exists" );
7878
$this->output->write( "\n" );
7979

80-
if( !$this->input->confirm( "Do you want to continue anyway?", false ) )
80+
if( !$this->confirm( "Do you want to continue anyway?", false ) )
8181
{
8282
$this->output->info( "Installation cancelled." );
8383
return 0;
@@ -116,7 +116,7 @@ public function execute( array $parameters = [] ): int
116116
// Ask to run migration
117117
$this->output->write( "\n" );
118118

119-
if( $this->input->confirm( "Would you like to run the queue migration now?", true ) )
119+
if( $this->confirm( "Would you like to run the queue migration now?", true ) )
120120
{
121121
if( !$this->runMigration() )
122122
{

0 commit comments

Comments
 (0)