Skip to content

Commit

Permalink
Applied fixes from StyleCI (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
soullivaneuh committed May 29, 2016
1 parent c69e808 commit 015b18c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion SonataIntlBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ class SonataIntlBundle extends Bundle
*/
public static function getSymfonyVersion($version)
{
return implode('.', array_slice(array_map(function ($val) { return (int) $val; }, explode('.', $version)), 0, 3));
return implode('.', array_slice(array_map(function ($val) {
return (int) $val;
}, explode('.', $version)), 0, 3));
}
}

0 comments on commit 015b18c

Please sign in to comment.