File "Boolean_Formatter.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/Events/Custom_Tables/V1/Models/Formatters/Boolean_Formatter.php
File size: 261 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
*
*
*
* @since 6.0.0
*/
namespace TEC\Events\Custom_Tables\V1\Models\Formatters;
class Boolean_Formatter implements Formatter {
public function format( $value ) {
return $value ? 1 : 0;
}
public function prepare() {
return '%d';
}
}