Skip to content

Commit

Permalink
Cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrooo committed Oct 8, 2013
1 parent 289b7b5 commit dc6a5aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Ouzo/Utilities/Strings.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

class Strings
{
public static function underscoreToCamelCase($str)
public static function underscoreToCamelCase($string)
{
$words = explode('_', strtolower($str));
$words = explode('_', strtolower($string));
$return = '';
foreach ($words as $word) {
$return .= ucfirst(trim($word));
Expand Down

0 comments on commit dc6a5aa

Please sign in to comment.