Completed
Push — master ( c14ed6...643334 )
by Johnny
02:41
created

ChatChannelLink   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 66
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 6
c 1
b 0
f 1
lcom 0
cbo 0
dl 0
loc 66
ccs 0
cts 24
cp 0
rs 10

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getEmoticons() 0 4 1
A setEmoticons() 0 4 1
A getBadges() 0 4 1
A setBadges() 0 4 1
A getSelf() 0 4 1
A setSelf() 0 4 1
1
<?php
2
namespace Redbox\Twitch;
3
4
class ChatChannelLink {
5
6
    /**
7
     * @var string
8
     */
9
    protected $emoticons;
10
11
    /**
12
     * @var string
13
     */
14
    protected $badges;
15
16
    /**
17
     * @var string
18
     */
19
    protected $self;
20
21
    /**
22
     * @return string
23
     */
24
    public function getEmoticons()
25
    {
26
        return $this->emoticons;
27
    }
28
29
    /**
30
     * @param string $emoticons
31
     */
32
    public function setEmoticons($emoticons)
33
    {
34
        $this->emoticons = $emoticons;
35
    }
36
37
    /**
38
     * @return string
39
     */
40
    public function getBadges()
41
    {
42
        return $this->badges;
43
    }
44
45
    /**
46
     * @param string $badges
47
     */
48
    public function setBadges($badges)
49
    {
50
        $this->badges = $badges;
51
    }
52
53
    /**
54
     * @return string
55
     */
56
    public function getSelf()
57
    {
58
        return $this->self;
59
    }
60
61
    /**
62
     * @param string $self
63
     */
64
    public function setSelf($self)
65
    {
66
        $this->self = $self;
67
    }
68
69
}