コレクションの最後の要素のプロパティを取得しようとしています。私は試した
end($collection)->getProperty()
と
$collection->last()->getProperty()
どれも動作しません
(ブール値で使用しようとしていると教えてくれますgetProperty()
)。
/**
* Get legs
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getLegs()
{
return $this->aLegs;
}
public function getLastlegdate()
{
$legs = $this->aLegs;
return $legs->last()->getStartDate();
}
理由はありますか?