interface kernel_interface

internal  
 

Contract for the application kernel singleton.

Coordinates the bootstrap lifecycle and exposes the service container for internal consumers that cannot rely on constructor injection.

Methods

static void
init()

Initialize kernel services and load definitions.

static void
handle()

Execute the current request using the configured HTTP kernel/dispatcher.

static ContainerInterface
container()

Get the shared PSR-11 container instance.

Details

at line 35
static void init()

Initialize kernel services and load definitions.

Return Value

void

at line 40
static void handle()

Execute the current request using the configured HTTP kernel/dispatcher.

Return Value

void

at line 45
static ContainerInterface container()

Get the shared PSR-11 container instance.

Return Value

ContainerInterface