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

Inheritance::block()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 3

Importance

Changes 0
Metric Value
cc 3
eloc 4
nc 3
nop 0
dl 0
loc 6
ccs 5
cts 5
cp 1
crap 3
rs 9.4285
c 0
b 0
f 0
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