| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | 1 | public function process(Parser $parser, $node, $variable, $data, array $options) |
|
| 26 | { |
||
| 27 | /* @var CodeNode $node */ |
||
| 28 | |||
| 29 | 1 | parent::process($parser, $node, $variable, $data, $options); |
|
| 30 | |||
| 31 | 1 | $nodeOutput = $this->highlightCode($node->getLanguage(), $node->getValue()); |
|
| 32 | |||
| 33 | 1 | $node->setRaw(true); |
|
| 34 | 1 | $node->setValue($nodeOutput); |
|
| 35 | 1 | } |
|
| 36 | } |
||
| 37 |