php-cs fixes.

This commit is contained in:
Franck Allimant
2014-06-10 16:34:33 +02:00
parent 441764cf94
commit 71ea9e9671
5 changed files with 6 additions and 9 deletions

View File

@@ -434,7 +434,8 @@ class DataAccessFunctions extends AbstractSmartyPlugin
*
* @return string the camel cased string.
*/
private function underscoreToCamelcase($str) {
private function underscoreToCamelcase($str)
{
// Split string in words.
$words = explode('_', strtolower($str));