This commit is contained in:
nuno maduro
2026-05-02 15:03:44 +01:00
parent 7d51601120
commit 4a8c2d7d78
12 changed files with 57 additions and 456 deletions

View File

@ -32,7 +32,7 @@ final class Kernel
/**
* Either the kernel is terminated or not.
*/
private bool $terminated;
private bool $terminated = false;
/**
* The Kernel bootstrappers.
@ -64,12 +64,7 @@ final class Kernel
/**
* Creates a new Kernel instance.
*/
public function __construct(
private Application $application,
private OutputInterface $output,
) {
$this->terminated = false;
}
public function __construct(private readonly Application $application, private readonly OutputInterface $output) {}
/**
* Boots the Kernel.