ok

Mini Shell

Direktori : /home2/selectio/www/bharath/a1tex.in/app/Console/Commands/
Upload File :
Current File : /home2/selectio/www/bharath/a1tex.in/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();
    }
}

Zerion Mini Shell 1.0