Mongolid\Serializer\Type\UTCDateTime::convert PHP Method

convert() public method

public convert ( ) : MongoDB\BSON\UTCDateTime
return MongoDB\BSON\UTCDateTime
    public function convert()
    {
        return $this->mongoDate;
    }

Usage Example

 public function testConvertShouldRetrieveMongodbUtcDateTime()
 {
     $this->assertEquals($this->mongoDate, $this->dateTime->convert());
 }