Created
September 16, 2011 22:08
-
-
Save pjedrzejewski/1223280 to your computer and use it in GitHub Desktop.
Overriding templates in Symfony2, gist #2.
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 | |
// src/Application/Bundle/UserBundle. | |
namespace Application\Bundle\UserBundle; | |
use Symfony\Component\HttpKernel\Bundle\Bundle; | |
class ApplicationUserBundle extends Bundle | |
{ | |
public function getParent() | |
{ | |
return 'FOSUserBundle'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment