]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Controller/TagController.php
php-cs-fixer
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Controller / TagController.php
index 616c37f2c63e23fdb9a407aec3f294bd67d57207..b6d28e59d63c73a2fb925f63ebacb72f18d69ed2 100644 (file)
@@ -65,7 +65,7 @@ class TagController extends Controller
         $em->flush();
 
         // remove orphan tag in case no entries are associated to it
-        if (0 === count($tag->getEntries())) {
+        if (0 === \count($tag->getEntries())) {
             $em->remove($tag);
             $em->flush();
         }