interface facade_interface

Contract that all Facade classes must implement.

This interface exposes only the minimal public API required by consumers. All resolution and container logic remains internal to base_facade.

Methods

static string
get_facade_accessor()

Return the identifier/class name of the service that the facade resolves from the Kernel container.

Details

at line 36
static string get_facade_accessor()

Return the identifier/class name of the service that the facade resolves from the Kernel container.

Example: return MyServiceInterface::class;

Return Value

string

the service ID or class name