MaintenanceModeManager
class MaintenanceModeManager extends Manager
Traits
Properties
| protected Repository | $config | The configuration repository instance. |
from Manager |
| protected array | $customCreators | The registered custom driver creators. |
from Manager |
| protected array | $drivers | The array of created "drivers". |
from Manager |
Methods
Get the default driver name.
Dynamically call the default driver instance.
Create an instance of the file based maintenance driver.
Create an instance of the array based maintenance driver.
Create an instance of the cache based maintenance driver.
Details
in
RebindsCallbacksToSelf at line 18
protected Closure|null
bindCallbackToSelf(Closure $callback)
Bind the provided callback to the class instance.
at line 46
string
getDefaultDriver()
Get the default driver name.
in
Manager at line 53
mixed
driver(UnitEnum|string|null $driver = null)
Get a driver instance.
in
Manager at line 78
protected mixed
createDriver(string $driver)
Create a new driver instance.
in
Manager at line 99
protected mixed
callCustomCreator(string $driver)
Call a custom driver creator.
in
Manager 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.
in
Manager at line 129
array
getDrivers()
Get all of the created "drivers".
in
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.
in
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.
in
Manager at line 177
mixed
__call(string $method, array $parameters)
Dynamically call the default driver instance.
at line 14
protected FileBasedMaintenanceMode
createFileDriver()
Create an instance of the file based maintenance driver.
at line 22
protected ArrayMaintenanceMode
createArrayDriver()
Create an instance of the array based maintenance driver.
at line 32
protected CacheBasedMaintenanceMode
createCacheDriver()
Create an instance of the cache based maintenance driver.