Completed
Pull Request — master (#97)
by Jonathan
02:39
created

Pattern::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 8
ccs 5
cts 5
cp 1
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 1
crap 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\Inflector\Rules;
6
7
use function preg_match;
8
9
final class Pattern
10
{
11
    /** @var string */
12
    private $pattern;
13
14
    /** @var string */
15
    private $regex;
16
17 531
    public function __construct(string $pattern)
18
    {
19 531
        $this->pattern = $pattern;
20
21 531
        if ($this->pattern[0] === '/') {
22 2
            $this->regex = $this->pattern;
23
        } else {
24 530
            $this->regex = '/' . $this->pattern . '/i';
25
        }
26 531
    }
27
28 525
    public function getPattern() : string
29
    {
30 525
        return $this->pattern;
31
    }
32
33 166
    public function getRegex() : string
34
    {
35 166
        return $this->regex;
36
    }
37
38 163
    public function matches(string $word) : bool
39
    {
40 163
        return preg_match($this->getRegex(), $word) === 1;
41
    }
42
}
43