Skip to content

Commit

Permalink
Cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
emodric committed Oct 25, 2017
1 parent a159031 commit 4fd5f89
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -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)
);
Expand Down Expand Up @@ -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)
);
Expand Down Expand Up @@ -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)
);
Expand Down

0 comments on commit 4fd5f89

Please sign in to comment.