]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
CS 2263/head
authorJeremy Benoist <jeremy.benoist@gmail.com>
Sat, 3 Sep 2016 17:26:23 +0000 (19:26 +0200)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Sat, 3 Sep 2016 17:26:23 +0000 (19:26 +0200)
src/Wallabag/CoreBundle/Twig/WallabagExtension.php

index d6ac61179673f673d889d4cbd85aee8ccd5f9853..974b86a97aab2c9da636ad7603e0feae2aef16ce 100644 (file)
@@ -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();