merge ( $credential )

Merge another instance of CFCredential onto this one.

Access

public

Parameters

Parameter

Type

Required

Description

$credential

CFCredential

Required

Another instance of CFCredential.

Returns

Type

Description

CFCredential

A reference to the current collection.

Source

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

public function merge(CFCredential $credential)
{
    $merged = array_merge($this->to_array(), $credential->to_array());
    $this->collection->exchangeArray($merged);
    return $this;
}

Copyright © 2010–2013 Amazon Web Services, LLC


Feedback