Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
31 | 48 | public function __construct( |
|
32 | $resourceBasePath = '.', |
||
33 | SyntaxHighlighterInterface $syntaxHighlighter = null |
||
34 | ) { |
||
35 | 48 | $this->resourceBasePath = (string) $resourceBasePath; |
|
36 | |||
37 | 48 | $this->syntaxHighlighter = (null === $syntaxHighlighter) |
|
38 | 48 | ? new SyntaxHighlighter() |
|
39 | 48 | : $syntaxHighlighter; |
|
40 | 48 | } |
|
41 | |||
60 |