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());
 }