Alcaeus\MongoDbAdapter\Helper\WriteConcern::getWriteConcern PHP Method

getWriteConcern() public method

public getWriteConcern ( ) : array
return array
    public function getWriteConcern()
    {
        if ($this->writeConcern === null) {
            $this->writeConcern = new \MongoDB\Driver\WriteConcern(1);
        }
        return ['w' => $this->writeConcern->getW(), 'wtimeout' => $this->writeConcern->getWtimeout()];
    }