yii\mongodb\Database::createCommand PHP 메소드

createCommand() 공개 메소드

Creates MongoDB command associated with this database.
부터: 2.1
public createCommand ( array $document = [] ) : Command
$document array command document contents.
리턴 Command command instance.
    public function createCommand($document = [])
    {
        return $this->connection->createCommand($document, $this->name);
    }