for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Mremi\Flowdock library.
*
* (c) Rémi Marseille <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Mremi\Flowdock\Api\Push;
/**
* Chat message class
* @author Rémi Marseille <[email protected]>
class ChatMessage extends BaseMessage implements ChatMessageInterface
{
* @var string
protected $externalUserName;
* @var integer
protected $messageId;
* {@inheritdoc}
public function setExternalUserName($externalUserName)
$this->externalUserName = $externalUserName;
return $this;
}
public function getExternalUserName()
return $this->externalUserName;
public function setMessageId($messageId)
$this->messageId = $messageId;
public function getMessageId()
return $this->messageId;