| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 14 | public function parse($value, Presentation $presentation) |
||
| 15 | { |
||
| 16 | if (!is_string($value)) { |
||
| 17 | throw new ConfigException('Sub title must be a string.'); |
||
| 18 | } |
||
| 19 | |||
| 20 | if (empty($value)) { |
||
| 21 | throw new ConfigException('Sub title must not be empty.'); |
||
| 22 | } |
||
| 23 | |||
| 24 | $presentation->subtitle = $value; |
||
| 25 | } |
||
| 26 | } |
||
| 27 |