Created
June 26, 2012 00:42
-
-
Save MDrollette/2992358 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace SOTB\CoreBundle\Model; | |
use Symfony\Component\HttpFoundation\Request; | |
use Symfony\Component\Security\Core\SecurityContextInterface; | |
/** | |
* @author Matt Drollette <[email protected]> | |
*/ | |
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