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

ChatEmoticons   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 44
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 4
c 1
b 0
f 1
lcom 0
cbo 0
dl 0
loc 44
ccs 0
cts 16
cp 0
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getImages() 0 4 1
A setImages() 0 4 1
A getRegex() 0 4 1
A setRegex() 0 4 1
1
<?php
2
namespace Redbox\Twitch;
3
4
class ChatEmoticons
5
{
6
    /**
7
     * @var string
8
     */
9
    protected $images;
10
11
    /**
12
     * @var string
13
     */
14
    protected $regex;
15
16
    /**
17
     * @return string
18
     */
19
    public function getImages()
20
    {
21
        return $this->images;
22
    }
23
24
    /**
25
     * @param string $images
26
     */
27
    public function setImages($images)
28
    {
29
        $this->images = $images;
30
    }
31
32
    /**
33
     * @return string
34
     */
35
    public function getRegex()
36
    {
37
        return $this->regex;
38
    }
39
40
    /**
41
     * @param string $regex
42
     */
43
    public function setRegex($regex)
44
    {
45
        $this->regex = $regex;
46
    }
47
}