register method

  1. @override
void register(
  1. ContainerInterface container
)
override

Registers authentication services in the container

This method binds all authentication services to the container, including core contracts and their implementations.

container The dependency injection container

Implementation

@override
void register(ContainerInterface container) {
  // Register core contracts
  _registerCoreContracts(container);

  // Register the main auth manager
  _registerAuthManager(container);
}