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.
Table of Contents
Methods
- get_facade_accessor() : string
- Return the identifier/class name of the service that the facade resolves from the Kernel container.
Methods
get_facade_accessor()
Return the identifier/class name of the service that the facade resolves from the Kernel container.
public
static get_facade_accessor() : string
Example: return MyServiceInterface::class;
Return values
string —the service ID or class name