for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SwooleTW\Http\Server\Resetters;
use Illuminate\Contracts\Container\Container;
use SwooleTW\Http\Server\Sandbox;
class ResetSession implements ResetterContract
{
/**
* "handle" function for resetting app.
*
* @param \Illuminate\Contracts\Container\Container $app
* @param \SwooleTW\Http\Server\Sandbox $sandbox
* @return \Illuminate\Contracts\Container\Container
*/
public function handle(Container $app, Sandbox $sandbox)
if (isset($app['session'])) {
$session = $app->make('session');
$session->flush();
$session->regenerate();
}
return $app;