Completed
Push — master ( 8d3e79...9daf84 )
by Edson
04:12
created

Inheritance   A

Complexity

Total Complexity 9

Size/Duplication

Total Lines 48
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 48
ccs 25
cts 25
cp 1
rs 10
c 0
b 0
f 0
wmc 9

5 Methods

Rating   Name   Duplication   Size   Complexity  
A block() 0 6 3
A extends() 0 5 2
A replace() 0 9 2
A __construct() 0 6 1
A __toString() 0 3 1
1
<?php
2
3
namespace Bonfim\Tpl;
4
5
class Inheritance extends Content
6
{
7
    private $config;
8
    private $blocks = [];
9
    private $content = '';
10
    private $patternBlock   = '/{\s?block \'?"?([\w]+)"?\'?\s?}(.*?){\s?\/block\s?}/is';
11
    private $patternExtends = '/{\s?extends \'?"?(.*?)"?\'?\s?}/is';
12
13 4
    public function __construct(string $content, array $config)
14
    {
15 4
        $this->config = $config;
16 4
        $this->content = $content;
17 4
        $this->block();
18 4
        $this->extends();
19 4
    }
20
21 4
    public function __toString(): string
22
    {
23 4
        return $this->content;
24
    }
25
26 4
    private function block(): void
27
    {
28 4
        if (preg_match_all($this->patternBlock, $this->content, $matches, PREG_SET_ORDER)) {
29 2
            for ($i = 0; $i < count($matches); $i++) {
0 ignored issues
show
Performance Best Practice introduced by
It seems like you are calling the size function count() as part of the test condition. You might want to compute the size beforehand, and not on each iteration.

If the size of the collection does not change during the iteration, it is generally a good practice to compute it beforehand, and not on each iteration:

for ($i=0; $i<count($array); $i++) { // calls count() on each iteration
}

// Better
for ($i=0, $c=count($array); $i<$c; $i++) { // calls count() just once
}
Loading history...
30 2
                $this->blocks[$matches[$i][1]] = $matches[$i][2];
31 2
                $this->content = str_replace($this->blocks[$matches[$i][1]], '', $this->content);
32
            };
33
        }
34 4
    }
35
36 4
    private function extends(): void
37
    {
38 4
        if (preg_match($this->patternExtends, $this->content, $match)) {
39 2
            $this->content = $this->getContent($match[1], $this->config);
40 2
            $this->replace();
41
        }
42 4
    }
43
44 2
    private function replace(): void
45
    {
46 2
        foreach ($this->blocks as $key => $value) {
47 2
            $pattern = '/{\s?block \'?"?'.$key.'"?\'?\s?}(.*?){\s?\/block\s?}/is';
48 2
            $this->content = preg_replace($pattern, $value, $this->content);
49
        }
50
51 2
        $this->content = preg_replace('/{\s?block \'?"?[\w]+"?\'?\s?}/is', '', $this->content);
52 2
        $this->content = preg_replace('/{\s?\/block\s?}/is', '', $this->content);
53 2
    }
54
}
55