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

ChatEmoticons::getRegex()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 2
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
}