本文整理汇总了PHP中Doctrine\Common\Collections\Collection::offsetSet方法的典型用法代码示例。如果您正苦于以下问题:PHP Collection::offsetSet方法的具体用法?PHP Collection::offsetSet怎么用?PHP Collection::offsetSet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Doctrine\Common\Collections\Collection
的用法示例。
在下文中一共展示了Collection::offsetSet方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: doSet
/**
* Actual logic for setting an element in the collection.
*
* @param mixed $offset
* @param mixed $value
* @param bool $arrayAccess
* @return bool
*/
private function doSet($offset, $value, $arrayAccess)
{
$arrayAccess ? $this->coll->offsetSet($offset, $value) : $this->coll->set($offset, $value);
// Handle orphanRemoval
if ($this->uow !== null && $this->isOrphanRemovalEnabled() && $value !== null) {
$this->uow->unscheduleOrphanRemoval($value);
}
$this->changed();
}
示例2: offsetSet
/**
* {@inheritDoc}
*/
public function offsetSet($offset, $value)
{
$this->initialize();
$this->collection->offsetSet($offset, $value);
}
示例3: InvalidTypeException
function it_accepts_only_elements_of_specified_type_for_offset_set_method(Collection $internal)
{
$this->shouldThrow(new InvalidTypeException(4, 'string'))->during('offsetSet', [1, 4]);
$internal->offsetSet(Argument::cetera())->shouldNotHaveBeenCalled();
}
示例4: addMetadata
/**
* @param BlockPropertyMetadata $metadata
*/
public function addMetadata(BlockPropertyMetadata $metadata)
{
$name = $metadata->getName();
$this->metadata->offsetSet($name, $metadata);
}
示例5: offsetSet
public function offsetSet($offset, $value)
{
$this->initialize();
$this->changed = true;
return $this->col->offsetSet($offset, $value);
}