for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Trello\Event;
class CardAttachmentEvent extends CardEvent
{
/**
* @var array
*/
protected $attachment;
* Set attachment
*
* @param array $attachment
public function setAttachment($attachment)
$this->attachment = $attachment;
}
* Get attachment
* @return array
public function getAttachment()
return $this->attachment;