Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
29 | 18 | public function __construct(SyntaxHighlighterInterface $syntaxHighlighter) |
|
30 | { |
||
31 | 18 | $this->name = 'code'; |
|
32 | |||
33 | 18 | $this->type = Parser::TAG_OUTLINE | Parser::TAG_PRE |
|
34 | 18 | | Parser::TAG_CLEAR_CONTENT; |
|
35 | |||
36 | 18 | $this->syntaxHighlighter = $syntaxHighlighter; |
|
37 | |||
38 | 18 | $this->defaultParam = 'lang'; |
|
39 | 18 | } |
|
40 | |||
60 |