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

Converts this to the new BSON MinKey type
public toBSONType ( ) : MongoDB\BSON\MinKey
Результат MongoDB\BSON\MinKey
Пример #1
0
 public function testConvert()
 {
     $minKey = new \MongoMinKey();
     $this->skipTestUnless($minKey instanceof TypeInterface);
     $this->assertInstanceOf('MongoDB\\BSON\\MinKey', $minKey->toBSONType());
 }
 public function testConvert()
 {
     $minKey = new \MongoMinKey();
     $this->assertInstanceOf('MongoDB\\BSON\\MinKey', $minKey->toBSONType());
 }