Skip to content

Commit

Permalink
remove unneded param
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandr Marchenko authored and Alexandr Marchenko committed Jan 12, 2014
1 parent a233e59 commit a64e7dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cocur/Slugify/Slugify.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public static function create($mode = null) {
* @param string $emptyValue Value to use if the slugified version is empty, defaults to "n{$separator}a"
* @return string Slug
*/
public function slugify($string, $separator = '-', $emptyValue = null) {
public function slugify($string, $separator = '-') {
if (empty($string)) {
return '';
}
Expand Down

0 comments on commit a64e7dd

Please sign in to comment.