Skip to content

Commit 19a3a39

Browse files
driesvintspatrickbrouwers
authored andcommitted
[FIX] Fix exit codes for SchemaUpdateCommand (#169)
* Fix exit codes for SchemaUpdateCommand * Fix StyleCI issue
1 parent 4abe363 commit 19a3a39

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Console/SchemaUpdateCommand.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,10 @@ public function fire(ManagerRegistry $registry)
8484
$this->getName()));
8585
$this->comment(sprintf(' <info>php artisan %s --sql</info> to dump the SQL statements to the screen',
8686
$this->getName()));
87+
88+
return 1;
8789
}
8890

89-
return 1;
91+
return 0;
9092
}
9193
}

0 commit comments

Comments
 (0)