From: Jeremy Benoist Date: Sat, 3 Sep 2016 17:26:23 +0000 (+0200) Subject: CS X-Git-Tag: 2.1.0~44^2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=234ad944534cf51118f63f0b48c206b5d9a70fe5;p=github%2Fwallabag%2Fwallabag.git CS --- diff --git a/src/Wallabag/CoreBundle/Twig/WallabagExtension.php b/src/Wallabag/CoreBundle/Twig/WallabagExtension.php index d6ac6117..974b86a9 100644 --- a/src/Wallabag/CoreBundle/Twig/WallabagExtension.php +++ b/src/Wallabag/CoreBundle/Twig/WallabagExtension.php @@ -36,9 +36,9 @@ class WallabagExtension extends \Twig_Extension implements \Twig_Extension_Globa } /** - * Return number of entries depending of the type (unread, archive, starred or all) + * Return number of entries depending of the type (unread, archive, starred or all). * - * @param string $type Type of entries to count + * @param string $type Type of entries to count * * @return int */ @@ -78,7 +78,7 @@ class WallabagExtension extends \Twig_Extension implements \Twig_Extension_Globa ->groupBy('e.id') ->getQuery(); - $data =$this->repository + $data = $this->repository ->enableCache($query) ->getArrayResult();