1
0
mirror of https://github.com/danielstjules/Stringy.git synced 2025-08-22 12:53:20 +02:00

Renamed toTitleCase

This commit is contained in:
Daniel St. Jules
2014-09-14 09:27:46 -07:00
parent 681463de87
commit c577684e0a
6 changed files with 36 additions and 10 deletions

View File

@@ -318,10 +318,10 @@ abstract class CommonTest extends PHPUnit_Framework_TestCase
);
}
public function toCaseTitleProvider()
public function toTitleCaseProvider()
{
return array(
array( 'Foo Bar', 'foo bar'),
array('Foo Bar', 'foo bar'),
array(' Foo_Bar ', ' foo_bar '),
array('Fòô Bàř', 'fòô bàř', 'UTF-8'),
array(' Fòô_Bàř ', ' fòô_bàř ', 'UTF-8'),