Пример #1
0
 public function test_pop_returns_and_removes_last_item_in_collection()
 {
     $c = new Collection(array('foo', 'bar'));
     $this->assertEquals('bar', $c->pop());
     $this->assertEquals('foo', $c->first());
 }