Skip to content

Commit

Permalink
CS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jyggen committed Nov 19, 2018
1 parent 95ed2be commit ea31a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static function realmNameToSlug(string $name): string
$slug = \str_replace(static::$replaceTable[0], static::$replaceTable[1], $name);
$slug = \preg_replace(static::$regexTable[0], static::$regexTable[1], $slug);

return \trim($slug, '-');
return \trim((string) $slug, '-');
}

/**
Expand Down

0 comments on commit ea31a87

Please sign in to comment.