예제 #1
0
파일: StrTest.php 프로젝트: laradic/support
 public function testCanSliceAString()
 {
     $string = Str::slice('abcdef', 'c');
     return $this->assertEquals(['ab', 'cdef'], $string);
 }