Beispiel #1
0
 public function testEndsWith()
 {
     $this->assertEqualsMatrix([[true, Str::endsWith('hello world', 'world')], [true, Str::endsWith('hello world', '')], [false, Str::endsWith('hello world', 'omg')], [false, Str::endsWith('hello world', 'hello world ')]]);
 }