2017-01-30 21:40:43 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Libraries\Skype;
|
2016-08-10 17:04:17 +03:00
|
|
|
|
|
|
|
|
class CarouselCard
|
|
|
|
|
{
|
|
|
|
|
public function __construct()
|
|
|
|
|
{
|
|
|
|
|
$this->contentType = 'application/vnd.microsoft.card.carousel';
|
|
|
|
|
$this->attachments = [];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function addAttachment($attachment)
|
|
|
|
|
{
|
|
|
|
|
$this->attachments[] = $attachment;
|
|
|
|
|
}
|
|
|
|
|
}
|