Skip to content

Instantly share code, notes, and snippets.

@MDrollette
Created June 26, 2012 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MDrollette/2992358 to your computer and use it in GitHub Desktop.
Save MDrollette/2992358 to your computer and use it in GitHub Desktop.
<?php
namespace SOTB\CoreBundle\Model;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Security\Core\SecurityContextInterface;
/**
* @author Matt Drollette <matt@drollette.com>
*/
interface InitializableControllerInterface
{
public function initialize(Request $request, SecurityContextInterface $security_context);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment