Implement two new bundle interface methods

This commit is contained in:
Antoine Hérault 2011-01-22 00:18:25 +01:00
parent 46f85d1061
commit 6497f62632

View file

@ -6,5 +6,13 @@ use Symfony\Component\HttpKernel\Bundle\Bundle as BaseBundle;
class MarkdownBundle extends BaseBundle
{
public function getNamespace()
{
return __NAMESPACE__;
}
public function getPath()
{
return __DIR__;
}
}