| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | final class DocumentRenderedEvent extends AbstractEvent |
||
| 19 | { |
||
| 20 | /** @var RenderedContentInterface */ |
||
| 21 | private $content; |
||
| 22 | |||
| 23 | public function __construct(RenderedContentInterface $content) |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @psalm-mutation-free |
||
| 30 | */ |
||
| 31 | public function getContent(): RenderedContentInterface |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @psalm-external-mutation-free |
||
| 38 | */ |
||
| 39 | public function replaceContent(RenderedContentInterface $content): void |
||
| 44 |