Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.1481 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
48 | 15 | public function build($content = null, $options = array()) |
|
49 | { |
||
50 | 15 | $this->options = $options + $this->options; |
|
51 | |||
52 | 15 | if (!is_null($this->content)) { |
|
53 | $content = $this->content; |
||
54 | } |
||
55 | |||
56 | 15 | return preg_replace($this->options['preg_replace'][0], $this->options['preg_replace'][1], $content); |
|
57 | } |
||
58 | } |
||
59 |