From 4fd5f89f51fa6e735f07395c265ad1c7c7da3833 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edi=20Modri=C4=87?= Date: Wed, 25 Oct 2017 11:04:14 +0200 Subject: [PATCH] Cs fix --- .../Persistence/Legacy/Tags/Gateway/DoctrineDatabase.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bundle/Core/Persistence/Legacy/Tags/Gateway/DoctrineDatabase.php b/bundle/Core/Persistence/Legacy/Tags/Gateway/DoctrineDatabase.php index 930eb580..71ab5f98 100644 --- a/bundle/Core/Persistence/Legacy/Tags/Gateway/DoctrineDatabase.php +++ b/bundle/Core/Persistence/Legacy/Tags/Gateway/DoctrineDatabase.php @@ -229,7 +229,7 @@ public function getChildren($tagId, $offset = 0, $limit = -1, array $translation $tagIds = array_map( function (array $row) { - return (int)$row['id']; + return (int) $row['id']; }, $statement->fetchAll(PDO::FETCH_ASSOC) ); @@ -320,7 +320,7 @@ public function getTagsByKeyword($keyword, $translation, $useAlwaysAvailable = t $tagIds = array_map( function (array $row) { - return (int)$row['id']; + return (int) $row['id']; }, $statement->fetchAll(PDO::FETCH_ASSOC) ); @@ -405,7 +405,7 @@ public function getSynonyms($tagId, $offset = 0, $limit = -1, array $translation $tagIds = array_map( function (array $row) { - return (int)$row['id']; + return (int) $row['id']; }, $statement->fetchAll(PDO::FETCH_ASSOC) );