| Conditions | 3 |
| Paths | 5 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 40 | public function getTheme() |
||
| 41 | { |
||
| 42 | try { |
||
| 43 | /** @var ChannelInterface $channel */ |
||
| 44 | $channel = $this->channelContext->getChannel(); |
||
| 45 | |||
| 46 | return $channel->getTheme(); |
||
| 47 | } catch (ChannelNotFoundException $exception) { |
||
| 48 | return null; |
||
| 49 | } catch (\Exception $exception) { |
||
| 50 | return null; |
||
| 51 | } |
||
| 52 | } |
||
| 53 | } |
||
| 54 |