| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | 5 | public function decorateFile(AbstractFile $file) |
|
| 29 | { |
||
| 30 | // skip due to HTML content incompatibility |
||
| 31 | 5 | if ($file->getExtension() !== 'md') { |
|
| 32 | 2 | return; |
|
| 33 | } |
||
| 34 | |||
| 35 | 3 | $htmlContent = $this->markdownExtra->transform($file->getContent()); |
|
| 36 | 3 | $file->changeContent($htmlContent); |
|
| 37 | 3 | } |
|
| 38 | } |
||
| 39 |