Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
41 | public function denormalize($propertyName) : string |
||
42 | { |
||
43 | $className = $this->nameConverter->denormalize($propertyName); |
||
44 | |||
45 | if (false !== mb_strpos($className, 'Notification')) { |
||
46 | $className = 'Notification\\' . $className; |
||
47 | } |
||
48 | |||
49 | return 'Kreta\\Notifier\\Domain\\Model\\Inbox\\' . $className; |
||
50 | } |
||
51 | } |
||
52 |