]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
php-cs-fixer pass 2199/head
authorSimounet <contact@simounet.net>
Wed, 20 Jul 2016 21:08:04 +0000 (23:08 +0200)
committerSimounet <contact@simounet.net>
Wed, 20 Jul 2016 21:08:04 +0000 (23:08 +0200)
src/Wallabag/CoreBundle/Controller/FooterController.php
src/Wallabag/CoreBundle/Controller/StaticController.php

index de809332fc6aa9b4d3a9ec5da84002f92950cd3e..fd93c436f9608446ab8727c97c0e46b91d262478 100644 (file)
@@ -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,
             ]
         );
     }
index f5fcabd8fe4e6cc93f6ddca1ae63f8ed3137be00..2a57f06fb055bc416ad037ed7a8580b91e4eea3c 100644 (file)
@@ -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]