I'm trying to get a property on the last element in a collection. I tried
end($collection)->getProperty()
and
$collection->last()->getProperty()
none works
(tells me I'm trying to use getProperty()
on a boolean).
/**
* Get legs
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getLegs()
{
return $this->aLegs;
}
public function getLastlegdate()
{
$legs = $this->aLegs;
return $legs->last()->getStartDate();
}
Any idea why ?