/
var
/
www
/
cobraambalaj
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Console
/
/var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Foundation/Console
mkdir
upload
Name
Size
Mode
Actions
stubs/
-
0755
rm
CastMakeCommand.php
1285
0644
edit
dl
rm
ChannelMakeCommand.php
1279
0644
edit
dl
rm
ClearCompiledCommand.php
835
0644
edit
dl
rm
ClosureCommand.php
1968
0644
edit
dl
rm
ComponentMakeCommand.php
3427
0644
edit
dl
rm
ConfigCacheCommand.php
2065
0644
edit
dl
rm
ConfigClearCommand.php
1075
0644
edit
dl
rm
ConsoleMakeCommand.php
2111
0644
edit
dl
rm
DownCommand.php
3399
0644
edit
dl
rm
EnvironmentCommand.php
624
0644
edit
dl
rm
EventCacheCommand.php
1396
0644
edit
dl
rm
EventClearCommand.php
1109
0644
edit
dl
rm
EventGenerateCommand.php
1898
0644
edit
dl
rm
EventListCommand.php
2410
0644
edit
dl
rm
EventMakeCommand.php
1239
0644
edit
dl
rm
ExceptionMakeCommand.php
1953
0644
edit
dl
rm
JobMakeCommand.php
1717
0644
edit
dl
rm
Kernel.php
9593
0644
edit
dl
rm
KeyGenerateCommand.php
2826
0644
edit
dl
rm
ListenerMakeCommand.php
2594
0644
edit
dl
rm
MailMakeCommand.php
2662
0644
edit
dl
rm
ModelMakeCommand.php
5333
0644
edit
dl
rm
NotificationMakeCommand.php
2726
0644
edit
dl
rm
ObserverMakeCommand.php
3445
0644
edit
dl
rm
OptimizeClearCommand.php
751
0644
edit
dl
rm
OptimizeCommand.php
630
0644
edit
dl
rm
PackageDiscoverCommand.php
904
0644
edit
dl
rm
PolicyMakeCommand.php
4914
0644
edit
dl
rm
ProviderMakeCommand.php
959
0644
edit
dl
rm
QueuedCommand.php
848
0644
edit
dl
rm
RequestMakeCommand.php
1321
0644
edit
dl
rm
ResourceMakeCommand.php
2284
0644
edit
dl
rm
RouteCacheCommand.php
2679
0644
edit
dl
rm
RouteClearCommand.php
1056
0644
edit
dl
rm
RouteListCommand.php
7096
0644
edit
dl
rm
RuleMakeCommand.php
1090
0644
edit
dl
rm
ServeCommand.php
4529
0644
edit
dl
rm
StorageLinkCommand.php
1610
0644
edit
dl
rm
StubPublishCommand.php
4105
0644
edit
dl
rm
TestMakeCommand.php
2306
0644
edit
dl
rm
UpCommand.php
1130
0644
edit
dl
rm
VendorPublishCommand.php
7341
0644
edit
dl
rm
ViewCacheCommand.php
2044
0644
edit
dl
rm
ViewClearCommand.php
1323
0644
edit
dl
rm
Edit:
/var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Foundation/Console/DownCommand.php
(3399B)
<?php namespace Illuminate\Foundation\Console; use Exception; use Illuminate\Console\Command; use Illuminate\Foundation\Exceptions\RegisterErrorViewPaths; use Illuminate\Support\Facades\View; class DownCommand extends Command { /** * The console command signature. * * @var string */ protected $signature = 'down {--redirect= : The path that users should be redirected to} {--render= : The view that should be prerendered for display during maintenance mode} {--retry= : The number of seconds after which the request may be retried} {--secret= : The secret phrase that may be used to bypass maintenance mode} {--status=503 : The status code that should be used when returning the maintenance mode response}'; /** * The console command description. * * @var string */ protected $description = 'Put the application into maintenance / demo mode'; /** * Execute the console command. * * @return int */ public function handle() { try { if (is_file(storage_path('framework/down'))) { $this->comment('Application is already down.'); return 0; } file_put_contents( storage_path('framework/down'), json_encode($this->getDownFilePayload(), JSON_PRETTY_PRINT) ); file_put_contents( storage_path('framework/maintenance.php'), file_get_contents(__DIR__.'/stubs/maintenance-mode.stub') ); $this->comment('Application is now in maintenance mode.'); } catch (Exception $e) { $this->error('Failed to enter maintenance mode.'); $this->error($e->getMessage()); return 1; } } /** * Get the payload to be placed in the "down" file. * * @return array */ protected function getDownFilePayload() { return [ 'redirect' => $this->redirectPath(), 'retry' => $this->getRetryTime(), 'secret' => $this->option('secret'), 'status' => (int) $this->option('status', 503), 'template' => $this->option('render') ? $this->prerenderView() : null, ]; } /** * Get the path that users should be redirected to. * * @return string */ protected function redirectPath() { if ($this->option('redirect') && $this->option('redirect') !== '/') { return '/'.trim($this->option('redirect'), '/'); } return $this->option('redirect'); } /** * Prerender the specified view so that it can be rendered even before loading Composer. * * @return string */ protected function prerenderView() { (new RegisterErrorViewPaths)(); return view($this->option('render'), [ 'retryAfter' => $this->option('retry'), ])->render(); } /** * Get the number of seconds the client should wait before retrying their request. * * @return int|null */ protected function getRetryTime() { $retry = $this->option('retry'); return is_numeric($retry) && $retry > 0 ? (int) $retry : null; } }
Save
cmd:
run