本文整理汇总了PHP中Doctrine\ORM\PersistentCollection::removeElement方法的典型用法代码示例。如果您正苦于以下问题:PHP PersistentCollection::removeElement方法的具体用法?PHP PersistentCollection::removeElement怎么用?PHP PersistentCollection::removeElement使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Doctrine\ORM\PersistentCollection
的用法示例。
在下文中一共展示了PersistentCollection::removeElement方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: removePost
public function removePost(Post $post)
{
if (!$this->hasPost($post)) {
throw new DomainException('Post is not exists');
}
$this->posts->removeElement($post);
}
示例2: clearPreviousCollection
/**
* Resets previous photo collection
*
* @param PersistentCollection $collection
*/
protected function clearPreviousCollection(PersistentCollection $collection)
{
if ($collection->count()) {
foreach ($collection as $item) {
$collection->removeElement($item);
}
}
}
示例3: postSetDataProvider
/**
* @return array
*/
public function postSetDataProvider()
{
$em = $this->getMockBuilder('Doctrine\\ORM\\EntityManager')->disableOriginalConstructor()->getMock();
$meta = $this->getMock('Doctrine\\Common\\Persistence\\Mapping\\ClassMetadata');
$existing = (object) ['$existing' => true];
$removed = (object) ['$removed' => true];
$added = (object) ['$added' => true];
$collectionWithElements = new ArrayCollection([$added]);
$cleanCollection = new PersistentCollection($em, $meta, new ArrayCollection());
$dirtyCollection = new PersistentCollection($em, $meta, new ArrayCollection([$existing, $removed]));
$dirtyCollection->takeSnapshot();
$dirtyCollection->removeElement($removed);
$dirtyCollection->add($added);
return ['Initialization with empty value should not be broken' => ['$data' => null, '$expectedAddedData' => [], '$expectedRemovedData' => []], 'Empty collection given should set nothing' => ['$data' => new ArrayCollection(), '$expectedAddedData' => [], '$expectedRemovedData' => []], 'Array collection with elements given, should be set to added' => ['$data' => $collectionWithElements, '$expectedAddedData' => [$added], '$expectedRemovedData' => []], 'Clean persistent collection given, should set nothing' => ['$data' => $cleanCollection, '$expectedAddedData' => [], '$expectedRemovedData' => []], 'Persistent collection given, should set from diffs' => ['$data' => $dirtyCollection, '$expectedAddedData' => [$added], '$expectedRemovedData' => [$removed]]];
}
示例4: removePermissions
public function removePermissions(Collection $permissions)
{
foreach ($permissions as $permission) {
$this->permissions->removeElement($permission);
}
}
示例5: removeTournament
/**
* @param TournamentPlayer $player
* @return User
*/
public function removeTournament(TournamentPlayer $player) : User
{
$this->tournaments->removeElement($player);
return $this;
}