haxorqt
Home
Console
Upload
information
Create File
Create Folder
About
:
/
proc
/
thread-self
/
cwd
/
wp-content
/
plugins
/
admin-columns-pro
/
classes
/
ConditionalFormat
/
Filename :
Formatter.php
back
Copy
<?php declare(strict_types=1); namespace ACP\ConditionalFormat; interface Formatter { public const DATE = 'date'; public const FLOAT = 'float'; public const INTEGER = 'integer'; public const STRING = 'string'; public function get_type(): string; public function format(string $value, $id, string $operator_group): string; }