App\Libraries\Skype\HeroCard::setText PHP Method

setText() public method

public setText ( $text )
    public function setText($text)
    {
        $this->content->text = $text;
    }

Usage Example

 public function skypeBot($account)
 {
     $product = $this->entity;
     $card = new HeroCard();
     $card->setTitle($product->product_key);
     $card->setSubitle($account->formatMoney($product->cost));
     $card->setText($product->notes);
     return $card;
 }