/var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Foundation
NameSizeModeActions
Auth/-0755rm
Bootstrap/-0755rm
Bus/-0755rm
Console/-0755rm
Events/-0755rm
Exceptions/-0755rm
Http/-0755rm
Providers/-0755rm
stubs/-0755rm
Support/-0755rm
Testing/-0755rm
Validation/-0755rm
AliasLoader.php51550755editdlrm
Application.php387630755editdlrm
ComposerScripts.php15300644editdlrm
EnvironmentDetector.php19650644editdlrm
helpers.php228530644editdlrm
Inspiring.php26160644editdlrm
Mix.php19090644editdlrm
PackageManifest.php43730644editdlrm
ProviderRepository.php64300755editdlrm
Edit: /var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Foundation/EnvironmentDetector.php (1965B)
detectConsoleEnvironment($callback, $consoleArgs); } return $this->detectWebEnvironment($callback); } /** * Set the application environment for a web request. * * @param \Closure $callback * @return string */ protected function detectWebEnvironment(Closure $callback) { return $callback(); } /** * Set the application environment from command-line arguments. * * @param \Closure $callback * @param array $args * @return string */ protected function detectConsoleEnvironment(Closure $callback, array $args) { // First we will check if an environment argument was passed via console arguments // and if it was that automatically overrides as the environment. Otherwise, we // will check the environment as a "web" request like a typical HTTP request. if (! is_null($value = $this->getEnvironmentArgument($args))) { return $value; } return $this->detectWebEnvironment($callback); } /** * Get the environment argument from the console. * * @param array $args * @return string|null */ protected function getEnvironmentArgument(array $args) { foreach ($args as $i => $value) { if ($value === '--env') { return $args[$i + 1] ?? null; } if (Str::startsWith($value, '--env')) { return head(array_slice(explode('=', $value), 1)); } } } }