feat: only exits of init

This commit is contained in:
Nuno Maduro
2023-06-18 11:52:51 +01:00
parent 167c96965e
commit cbb6a58c8a

View File

@ -60,13 +60,13 @@ final class Init implements HandlesArguments
$this->init(); $this->init();
return array_values($arguments); exit(0);
} }
/** /**
* Initializes the tests directory. * Initializes the tests directory.
*/ */
private function init(): void public function init(): void
{ {
$testsBaseDir = "{$this->testSuite->rootPath}/tests"; $testsBaseDir = "{$this->testSuite->rootPath}/tests";
@ -112,8 +112,6 @@ final class Init implements HandlesArguments
View::render('components.new-line'); View::render('components.new-line');
(new Thanks($this->input, $this->output))(); (new Thanks($this->input, $this->output))();
exit(0);
} }
/** /**