PayPal\Api\CancelNotification::addCcEmail PHP Method

addCcEmail() public method

Append CcEmails to the list.
public addCcEmail ( string $string )
$string string
    public function addCcEmail($string)
    {
        if (!$this->getCcEmails()) {
            return $this->setCcEmails(array($string));
        } else {
            return $this->setCcEmails(array_merge($this->getCcEmails(), array($string)));
        }
    }