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