12345678910111213141516171819202122 |
- <?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;
- }
- }
|