\Omega\Environment EnvironmentDetector

Environment detector class.

The 'EnvironmentDetector' class is designed to identify the operating environment within which an application is running, distinguishing between web-based and console-based environments. This class enables the application to adapt its behavior accordingly, allowing for seamless interaction and functionality across different platforms. By accurately detecting the environment, the class facilitates the execution of context-specific actions, ensuring optimal performance and user experience across various deployment scenarios.

Summary

Methods
Properties
Constants
detect
No public properties found
No public constants found
detectWebEnvironment
detectConsoleEnvironment
getEnvironmentArgument
No protected properties found
No protected constants found
No private methods found
No private properties found
No private constants found

Methods

detect()

detect(\Closure  $callback, string[]|null  $consoleArgs = null) : string

Detect the application's current environment.

Parameters

\Closure $callback

Holds the callback to use for detecting environment.

string[]|null $consoleArgs

Holds an array of console arguments or null.

Returns

string —

Return the application's current environment.

detectWebEnvironment()

detectWebEnvironment(\Closure  $callback) : string

Set the application environment for a web request.

Parameters

\Closure $callback

Holds the callback to use for detecting environment.

Returns

string —

Return the application's current environment.

detectConsoleEnvironment()

detectConsoleEnvironment(\Closure  $callback, string[]  $args = []) : string

Set the application environment from command-line arguments.

Parameters

\Closure $callback

Holds the callback to use for detecting environment.

string[] $args

Holds an array of arguments for the environment.

Returns

string —

Return the application's environment.

getEnvironmentArgument()

getEnvironmentArgument(string[]  $args) : ?string

Get the environment argument from the console.

Parameters

string[] $args

Holds an array of argument.

Returns

?string —

Return the environment argument from the console.