Files
alrahma_sunday_school_api/app/Services/PhoneFormatterService.php
T
2026-03-09 02:52:13 -04:00

23 lines
447 B
PHP

<?php
namespace App\Services;
class PhoneFormatterService
{
public function formatPhoneNumber(string $number): ?string
{
$digits = preg_replace('/\D/', '', $number);
if (strlen($digits) === 10) {
return sprintf(
'%s-%s-%s',
substr($digits, 0, 3),
substr($digits, 3, 3),
substr($digits, 6)
);
}
return null;
}
}