for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Redbox\Twitch;
class ChatChannelLink {
/**
* @var string
*/
protected $emoticons;
protected $badges;
protected $self;
* @return string
public function getEmoticons()
{
return $this->emoticons;
}
* @param string $emoticons
public function setEmoticons($emoticons)
$this->emoticons = $emoticons;
public function getBadges()
return $this->badges;
* @param string $badges
public function setBadges($badges)
$this->badges = $badges;
public function getSelf()
return $this->self;
* @param string $self
public function setSelf($self)
$this->self = $self;