本文整理匯總了PHP中Doctrine\Common\Collections\Collection::last方法的典型用法代碼示例。如果您正苦於以下問題:PHP Collection::last方法的具體用法?PHP Collection::last怎麽用?PHP Collection::last使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Doctrine\Common\Collections\Collection
的用法示例。
在下文中一共展示了Collection::last方法的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testFirstAndLast
public function testFirstAndLast()
{
$this->_coll->add('one');
$this->_coll->add('two');
$this->assertEquals($this->_coll->first(), 'one');
$this->assertEquals($this->_coll->last(), 'two');
}
示例2: last
/** {@inheritdoc} */
public function last()
{
$this->initialize();
return $this->coll->last();
}
示例3: getRebalancerAction
public function getRebalancerAction()
{
return $this->rebalancerActions->last();
}
示例4: getLastChild
/**
* {@inheritdoc}
*/
public function getLastChild()
{
return $this->children->last();
}
示例5: isIncreasing
/**
* @param Collection $orderedByIndex
* @return bool
*/
protected function isIncreasing(Collection $orderedByIndex)
{
return is_null($orderedByIndex->first()->getMinValue()) && is_null($orderedByIndex->last()->getMaxValue());
}
示例6: last
/**
* Sets the internal iterator to the last element in the collection and returns this element.
*
* @return mixed
*/
function last()
{
$this->initialize();
$last = $this->collection->last();
return $last->getTerm();
}
示例7: last
/**
* {@inheritdoc}
*/
public function last()
{
return $this->inner->last();
}
示例8: getLastOrder
/**
* getLastOrder
*
* @return \POS\Model\Entity\OrderInterface|null
*/
public function getLastOrder()
{
return $this->orders->last();
}
示例9: last
/**
* {@inheritDoc}
*/
public function last()
{
return $this->collection->last();
}
示例10: testLast
/**
* @dataProvider provideCollection
*/
public function testLast(Collection $coll, array $elements)
{
$this->assertSame(end($elements), $coll->last());
}
示例11: getLatestScoreDetails
public function getLatestScoreDetails()
{
return $this->scores->last();
}