don't convert sender number to integer

This commit is contained in:
2022-07-12 13:17:56 +02:00
parent c555a9ac6c
commit 231cb91bdb

View File

@ -49,6 +49,6 @@ class Sender extends StringValueObject
*/ */
public function getFormatted() public function getFormatted()
{ {
return (int) parent::getFormatted(); return parent::getFormatted();
} }
} }