mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-23 17:41:01 +00:00
php-cs-fixer pass
This commit is contained in:
parent
40288b7166
commit
57c608fa94
2 changed files with 4 additions and 2 deletions
|
@ -7,7 +7,7 @@ use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|||
class FooterController extends Controller
|
||||
{
|
||||
/**
|
||||
* Display the footer
|
||||
* Display the footer.
|
||||
*
|
||||
* @return \Symfony\Component\HttpFoundation\Response
|
||||
*/
|
||||
|
@ -15,11 +15,12 @@ class FooterController extends Controller
|
|||
{
|
||||
$addonsUrl = $this->container->getParameter('addons_url');
|
||||
$socialsUrl = $this->container->getParameter('socials_url');
|
||||
|
||||
return $this->render(
|
||||
'WallabagCoreBundle::footer.html.twig',
|
||||
[
|
||||
'addonsUrl' => $addonsUrl,
|
||||
'socialsUrl' => $socialsUrl
|
||||
'socialsUrl' => $socialsUrl,
|
||||
]
|
||||
);
|
||||
}
|
||||
|
|
|
@ -13,6 +13,7 @@ class StaticController extends Controller
|
|||
public function howtoAction()
|
||||
{
|
||||
$addonsUrl = $this->container->getParameter('addons_url');
|
||||
|
||||
return $this->render(
|
||||
'WallabagCoreBundle:Static:howto.html.twig',
|
||||
['addonsUrl' => $addonsUrl]
|
||||
|
|
Loading…
Reference in a new issue