PayPal\Api\Invoice::addCcInfo PHP Method

addCcInfo() public method

Append CcInfo to the list.
public addCcInfo ( Participant $participant )
$participant Participant
    public function addCcInfo($participant)
    {
        if (!$this->getCcInfo()) {
            return $this->setCcInfo(array($participant));
        } else {
            return $this->setCcInfo(array_merge($this->getCcInfo(), array($participant)));
        }
    }