getVersion()
getVersion() : string
Get the version of the application.
Returns
string —Return the version of the application.
Application Interface Class.
environment(string|string[] ...$environments) : string|bool
Get or check the current application environment.
This method allows you to either retrieve the current environment or check if the application is running in a specific environment.
string|string[] | $environments variadic | One or more environment names to check against the current environment. If no parameters are provided, the method returns the current environment as a string.
If one or more environment names are provided, the method returns |
The current environment as a string if no parameters are provided; true
or false
if
checking against the provided environments.
setCurrentTimeZone() : $this
Sets the default timezone for the application.
This method reads the timezone from the application configuration and sets it as the default timezone for all date and time operations within the application.
Returns a reference to the current object for method chaining.