tables/src/formats/IntegerFormat.php
2024-08-13 14:30:00 +03:00

14 lines
230 B
PHP

<?php
namespace Itguild\Tables\formats;
use Itguild\Tables\formats\BaseFormat;
class IntegerFormat extends BaseFormat
{
static function fetch(?string $data, string $options = "")
{
return intval($data);
}
}