Skip to content

Instantly share code, notes, and snippets.

@quard8
Created December 10, 2012 09:21
Show Gist options
  • Select an option

  • Save quard8/4249556 to your computer and use it in GitHub Desktop.

Select an option

Save quard8/4249556 to your computer and use it in GitHub Desktop.
"before" middleware
$app->before(function (\Symfony\Component\HttpFoundation\Request $request) use ($app) {
if ($request->cookies->has($app['session']->getName())) {
$app['session']->start();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment