feature/cierres #30

Merged
aldarien merged 460 commits from feature/cierres into develop 2025-09-11 15:16:17 -03:00
329 changed files with 799 additions and 13143 deletions
Showing only changes of commit 8af56137a8 - Show all commits

View File

@ -74,7 +74,11 @@ class TestBootstrap
public function migrate(): void public function migrate(): void
{ {
$cmd = "{$this->baseCommand} migrate -e testing"; $cmd = "{$this->baseCommand} migrate -e testing";
shell_exec($cmd); $status = shell_exec($cmd);
if ($status !== false and $status !== null) {
$cmd = "{$this->baseCommand} seed:run -e testing";
shell_exec($cmd);
}
} }
public function resetDatabase(): void public function resetDatabase(): void