Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | class ReplaceTitle implements MutatorInterface, RenderableInterface |
||
17 | { |
||
18 | use RenderableTrait; |
||
19 | |||
20 | /** @var RenderBlock */ |
||
21 | private $renderBlock; |
||
22 | |||
23 | public function __construct(RenderBlock $renderBlock) |
||
24 | { |
||
25 | $this->renderBlock = $renderBlock; |
||
26 | } |
||
27 | |||
28 | public function mutate(Handler $ajax): Handler |
||
37 | } |
||
38 | } |
||
40 |