| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function getDefault(): NewsletterList |
||
| 42 | { |
||
| 43 | foreach ($this->items as $newsletterList) { |
||
| 44 | if ($newsletterList->getName() === $this->defaultListName) { |
||
| 45 | return $newsletterList; |
||
| 46 | } |
||
| 47 | } |
||
| 48 | |||
| 49 | throw InvalidNewsletterList::defaultListDoesNotExist($this->defaultListName); |
||
| 50 | } |
||
| 51 | } |
||
| 52 |