mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-22 22:58:08 +00:00
13 lines
208 B
PHP
13 lines
208 B
PHP
<?php
|
|
|
|
namespace Wallabag\UserBundle;
|
|
|
|
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
|
|
|
class WallabagUserBundle extends Bundle
|
|
{
|
|
public function getParent()
|
|
{
|
|
return 'FOSUserBundle';
|
|
}
|
|
}
|