<?php namespace App\Helpers; class PhoneHelper { public static function trim(string $phone): string { return preg_replace('/[^0-9]/', '', $phone); } }