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

setTitle() public method

public setTitle ( $title )
    public function setTitle($title)
    {
        $this->content->title = $title;
    }

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;
 }