コード例 #1
0
ファイル: ArrTest.php プロジェクト: laradic/support
 public function testCanRemoveFirstValueFromAnArray()
 {
     $array = Arr::removeFirst($this->array);
     $this->assertEquals(['bis' => 'ter'], $array);
 }