Manager
abstract class Manager
Traits
Properties
| protected Repository | $config | The configuration repository instance. |
|
| protected array | $customCreators | The registered custom driver creators. |
|
| protected array | $drivers | The array of created "drivers". |
Methods
Get the default driver name.
Get a driver instance.
Create a new driver instance.
Call a custom driver creator.
Get all of the created "drivers".
Get the container instance used by the manager.
Forget all of the resolved driver instances.
Dynamically call the default driver instance.
Details
in
RebindsCallbacksToSelf at line 18
protected Closure|null
bindCallbackToSelf(Closure $callback)
Bind the provided callback to the class instance.
at line 37
__construct(Container $container)
Create a new manager instance.
at line 46
abstract string
getDefaultDriver()
Get the default driver name.
at line 53
mixed
driver(UnitEnum|string|null $driver = null)
Get a driver instance.
at line 78
protected mixed
createDriver(string $driver)
Create a new driver instance.
at line 99
protected mixed
callCustomCreator(string $driver)
Call a custom driver creator.
at line 112
Manager
extend(string $driver, Closure $callback)
Register a custom driver creator Closure.
Boot-only. The callback persists in the singleton's customCreators array for the worker lifetime and applies to every subsequent driver resolution.
at line 129
array
getDrivers()
Get all of the created "drivers".
at line 137
Container
getContainer()
Get the container instance used by the manager.
at line 151
Manager
setContainer(Container $container)
Set the container instance used by the manager.
Tests only. Swaps the singleton's container reference; per-request use races across coroutines and breaks every concurrent driver resolution through this manager.
at line 167
Manager
forgetDrivers()
Forget all of the resolved driver instances.
Boot or tests only. Clears the singleton's driver cache; concurrent coroutines may already hold references that next resolution will not share.
at line 177
mixed
__call(string $method, array $parameters)
Dynamically call the default driver instance.