========================================= MongoDB\\GridFS\\Bucket::getReadConcern() ========================================= .. versionadded:: 1.2 .. default-domain:: mongodb .. contents:: On this page :local: :backlinks: none :depth: 1 :class: singlecol Definition ---------- .. phpmethod:: MongoDB\\GridFS\\Bucket::getReadConcern() Returns the read concern for this GridFS bucket. .. code-block:: php function getReadConcern(): MongoDB\Driver\ReadConcern Return Values ------------- A :php:`MongoDB\\Driver\\ReadConcern ` object. Example ------- .. code-block:: php selectDatabase('test'); $bucket = $database->selectGridFSBucket([ 'readConcern' => new MongoDB\Driver\ReadConcern(MongoDB\Driver\ReadConcern::MAJORITY), ]); var_dump($bucket->getReadConcern()); The output would then resemble:: object(MongoDB\Driver\ReadConcern)#3 (1) { ["level"]=> string(8) "majority" } See Also -------- - :manual:`Read Concern ` in the MongoDB manual - :php:`MongoDB\\Driver\\ReadConcern::isDefault() ` - :phpmethod:`MongoDB\\Client::getReadConcern()` - :phpmethod:`MongoDB\\Collection::getReadConcern()` - :phpmethod:`MongoDB\\Database::getReadConcern()`