当前位置: 首页>>代码示例>>PHP>>正文


PHP collection::removeElement方法代码示例

本文整理汇总了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);
 }
开发者ID:JDemonchaux,项目名称:projetDev,代码行数:9,代码来源:Livret.php

示例2: removeCompetence

 /**
  * Remove competence
  *
  * @param JavaLeEET\LivretBundle\Document\Competence $competence
  */
 public function removeCompetence(\JavaLeEET\LivretBundle\Document\Competence $competence)
 {
     $this->competences->removeElement($competence);
 }
开发者ID:JDemonchaux,项目名称:projetDev,代码行数:9,代码来源:Activite.php

示例3: removeProduct

 public function removeProduct($product)
 {
     $this->products->removeElement($product);
 }
开发者ID:anhpha,项目名称:reports,代码行数:4,代码来源:Task.php

示例4: removeSong

 /**
  * Remove songs
  *
  * @param \MusicBundle\Entity\Song $songs
  */
 public function removeSong(\MusicBundle\Entity\Song $songs)
 {
     $this->songs->removeElement($songs);
 }
开发者ID:PauuloG,项目名称:MusicAPI-Symfony,代码行数:9,代码来源:Artist.php

示例5: removeCompetencesUtil

 /**
  * Remove competencesUtil
  *
  * @param JavaLeEET\LivretBundle\Document\CompetenceUtil $competencesUtil
  */
 public function removeCompetencesUtil(\JavaLeEET\LivretBundle\Document\CompetenceUtil $competencesUtil)
 {
     $this->competencesUtil->removeElement($competencesUtil);
 }
开发者ID:JDemonchaux,项目名称:projetDev,代码行数:9,代码来源:ItemEntreprise.php

示例6: removeSection

 /**
  * Remove section
  *
  * @param JavaLeEET\LivretBundle\Document\Section $section
  */
 public function removeSection(\JavaLeEET\LivretBundle\Document\Section $section)
 {
     $this->sections->removeElement($section);
 }
开发者ID:JDemonchaux,项目名称:projetDev,代码行数:9,代码来源:Categorie.php

示例7: removeItemLivret

 /**
  * Remove itemLivret
  *
  * @param JavaLeEET\LivretBundle\Document\ItemLivret $itemLivret
  */
 public function removeItemLivret(\JavaLeEET\LivretBundle\Document\ItemLivret $itemLivret)
 {
     $this->itemLivret->removeElement($itemLivret);
 }
开发者ID:JDemonchaux,项目名称:projetDev,代码行数:9,代码来源:Section.php

示例8: removeItemEntreprise

 /**
  * Remove itemEntreprise
  *
  * @param JavaLeEET\LivretBundle\Document\ItemEntreprise $itemEntreprise
  */
 public function removeItemEntreprise(\JavaLeEET\LivretBundle\Document\ItemEntreprise $itemEntreprise)
 {
     $this->itemEntreprise->removeElement($itemEntreprise);
 }
开发者ID:JDemonchaux,项目名称:projetDev,代码行数:9,代码来源:PeriodeFormation.php


注:本文中的collection::removeElement方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。