Sokil\Mongo\Revision::getDate PHP Метод

getDate() публичный Метод

Get date
public getDate ( string $format = null ) : MongoDate | string
$format string format of date compartible with php's date function
Результат MongoDate | string
    public function getDate($format = null)
    {
        if (!$format) {
            return $this->get('__date__')->sec;
        }
        return date($format, $this->get('__date__')->sec);
    }