offsetSet ( $offset, $value )

Set the value for a specific offset.

Access

public

Parameters

Parameter

Type

Required

Description

$offset

integer

Required

The location in the collection to set a new value for.

$value

mixed

Required

The new value for the collection location.

Returns

Type

Description

CFCredential

A reference to the current collection.

Source

Method defined in utilities/credential.class.php | Toggle source view (5 lines) | View on GitHub

public function offsetSet($offset, $value)
{
    $this->collection->offsetSet($offset, $value);
    return $this;
}

Copyright © 2010–2013 Amazon Web Services, LLC


Feedback