예제 #1
0
파일: StrTest.php 프로젝트: laradic/support
 public function testCanConvertToCamelCase()
 {
     $string = Str::toCamelCase('this_is_a_string');
     $this->assertEquals('thisIsAString', $string);
 }