diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-23 16:28:37 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-23 16:28:37 +0100 |
commit | ad4d1caa9e744af57ca58a4e57576533eb682d00 (patch) | |
tree | 37d6c284d2afc7fc62cdf80be419b536ab4ea603 /src/WallabagBundle/Controller/StaticController.php | |
parent | b84a80559a1167b5500fbc5eb4965d3b08b371ef (diff) | |
download | wallabag-ad4d1caa9e744af57ca58a4e57576533eb682d00.tar.gz wallabag-ad4d1caa9e744af57ca58a4e57576533eb682d00.tar.zst wallabag-ad4d1caa9e744af57ca58a4e57576533eb682d00.zip |
move WallabagBundle into Wallabag:CoreBundle
Diffstat (limited to 'src/WallabagBundle/Controller/StaticController.php')
-rw-r--r-- | src/WallabagBundle/Controller/StaticController.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/WallabagBundle/Controller/StaticController.php b/src/WallabagBundle/Controller/StaticController.php deleted file mode 100644 index aee2bb7e..00000000 --- a/src/WallabagBundle/Controller/StaticController.php +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace WallabagBundle\Controller; | ||
4 | |||
5 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; | ||
6 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; | ||
7 | |||
8 | class StaticController extends Controller | ||
9 | { | ||
10 | /** | ||
11 | * @Route("/about", name="about") | ||
12 | */ | ||
13 | public function aboutAction() | ||
14 | { | ||
15 | return $this->render( | ||
16 | 'WallabagBundle:Static:about.html.twig', | ||
17 | array() | ||
18 | ); | ||
19 | } | ||
20 | } | ||