14 lines
220 B
PHP
14 lines
220 B
PHP
<?php
|
|
|
|
namespace Itguild\Tables\formats;
|
|
|
|
use Itguild\Tables\formats\BaseFormat;
|
|
|
|
class PhoneNumberFormat extends BaseFormat
|
|
{
|
|
|
|
static function fetch(?string $data, string $options = "")
|
|
{
|
|
return;
|
|
}
|
|
} |