Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
45 | public function getContent(): Content |
||
46 | { |
||
47 | if (!$this->hasContent()) { |
||
48 | throw new UnexpectedValueException(sprintf('Return value is not set or not a type of %s. Check hasContent() or set it by setContent() before you call getter.', Content::class)); |
||
49 | } |
||
50 | |||
51 | return $this->content; |
||
52 | } |
||
53 | |||
64 |