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 ResetCookie 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['cookie'])) {
$cookies = $app->make('cookie');
foreach ($cookies->getQueuedCookies() as $key => $value) {
$cookies->unqueue($value->getName());
}
return $app;