예제 #1
0
파일: ArrTest.php 프로젝트: laradic/support
 public function testCanRemoveLasttValueFromAnArray()
 {
     $array = Arr::removeLast($this->array);
     $this->assertEquals(['foo' => 'bar'], $array);
 }