本文整理汇总了PHP中collection::removeElement方法的典型用法代码示例。如果您正苦于以下问题:PHP collection::removeElement方法的具体用法?PHP collection::removeElement怎么用?PHP collection::removeElement使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类collection
的用法示例。
在下文中一共展示了collection::removeElement方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: removePeriodeFormation
/**
* Remove periodeFormation
*
* @param JavaLeEET\LivretBundle\Document\PeriodeFormation $periodeFormation
*/
public function removePeriodeFormation(\JavaLeEET\LivretBundle\Document\PeriodeFormation $periodeFormation)
{
$this->periodeFormation->removeElement($periodeFormation);
}
示例2: removeCompetence
/**
* Remove competence
*
* @param JavaLeEET\LivretBundle\Document\Competence $competence
*/
public function removeCompetence(\JavaLeEET\LivretBundle\Document\Competence $competence)
{
$this->competences->removeElement($competence);
}
示例3: removeProduct
public function removeProduct($product)
{
$this->products->removeElement($product);
}
示例4: removeSong
/**
* Remove songs
*
* @param \MusicBundle\Entity\Song $songs
*/
public function removeSong(\MusicBundle\Entity\Song $songs)
{
$this->songs->removeElement($songs);
}
示例5: removeCompetencesUtil
/**
* Remove competencesUtil
*
* @param JavaLeEET\LivretBundle\Document\CompetenceUtil $competencesUtil
*/
public function removeCompetencesUtil(\JavaLeEET\LivretBundle\Document\CompetenceUtil $competencesUtil)
{
$this->competencesUtil->removeElement($competencesUtil);
}
示例6: removeSection
/**
* Remove section
*
* @param JavaLeEET\LivretBundle\Document\Section $section
*/
public function removeSection(\JavaLeEET\LivretBundle\Document\Section $section)
{
$this->sections->removeElement($section);
}
示例7: removeItemLivret
/**
* Remove itemLivret
*
* @param JavaLeEET\LivretBundle\Document\ItemLivret $itemLivret
*/
public function removeItemLivret(\JavaLeEET\LivretBundle\Document\ItemLivret $itemLivret)
{
$this->itemLivret->removeElement($itemLivret);
}
示例8: removeItemEntreprise
/**
* Remove itemEntreprise
*
* @param JavaLeEET\LivretBundle\Document\ItemEntreprise $itemEntreprise
*/
public function removeItemEntreprise(\JavaLeEET\LivretBundle\Document\ItemEntreprise $itemEntreprise)
{
$this->itemEntreprise->removeElement($itemEntreprise);
}