/
home
/
obinna
/
html
/
amply
/
vendor
/
doctrine
/
dbal
/
lib
/
Doctrine
/
DBAL
/
Sharding
/
ShardChoser
/
Upload File
HOME
<?php namespace Doctrine\DBAL\Sharding\ShardChoser; use Doctrine\DBAL\Sharding\PoolingShardConnection; /** * The MultiTenant Shard choser assumes that the distribution value directly * maps to the shard id. * * @deprecated */ class MultiTenantShardChoser implements ShardChoser { /** * {@inheritdoc} */ public function pickShard($distributionValue, PoolingShardConnection $conn) { return $distributionValue; } }