Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
47 | public function __construct(ServerRequestInterface $request, string $key, array $config = [], ContentObjectRenderer $cObj = null) |
||
48 | { |
||
49 | $this->key = $key; |
||
50 | $this->config = $config; |
||
51 | |||
52 | if ($cObj === null) { |
||
53 | $cObj = GeneralUtility::makeInstance(ContentObjectRenderer::class); |
||
54 | } |
||
55 | $this->cObj = $cObj; |
||
56 | } |
||
89 |