Skip to content

Instantly share code, notes, and snippets.

@pjedrzejewski
Created September 16, 2011 22:08
Show Gist options
  • Save pjedrzejewski/1223280 to your computer and use it in GitHub Desktop.
Save pjedrzejewski/1223280 to your computer and use it in GitHub Desktop.
Overriding templates in Symfony2, gist #2.
<?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