14 lines
230 B
PHP
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);
|
|
}
|
|
} |