Elastica\Type\AbstractType::convertDate PHP Method

convertDate() public method

This is the lucene date format
public convertDate ( integer $date ) : string
$date integer Date input (could be string etc.) -> must be supported by strtotime
return string Converted date string
    public function convertDate($date)
    {
        return Util::convertDate($date);
    }