本文整理匯總了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);
}