File "date.php"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/cache/cache/.wp-cli/wp-content/plugins/woo-product-filter/classes/date.php
File size: 172 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
class DateWpf {
	public static function _( $time = null ) {
		if (is_null($time)) {
			$time = time();
		}
		return gmdate(WPF_DATE_FORMAT_HIS, $time);
	}
}